hampt5

import { useState, useEffect } from “react”; export default function LandingPage() { const [scrolled, setScrolled] = useState(false); useEffect(() => { const onScroll = () => setScrolled(window.scrollY > 20); window.addEventListener(“scroll”, onScroll); return () => window.removeEventListener(“scroll”, onScroll); }, []); const niches = [ { icon: “🏑”, title: “Real Estate”, desc: “Listing videos that sell” }, { icon: “🍽️”, title: “Restaurants”, desc: “Menus that make mouths water” }, { icon: “πŸ’ͺ”, title: “Fitness Studios”, desc: “Class promos that fill spots” }, { icon: “πŸ‘—”, title: “Boutiques”, desc: “Product spotlights that sell” }, { icon: “πŸ’…”, title: “Beauty Pros”, desc: “Before/after content that books” }, { icon: “πŸ”¨”, title: “Contractors”, desc: “Cinematic renovation reels” }, { icon: “🩺”, title: “Healthcare”, desc: “Trust-building brand content” }, { icon: “🎯”, title: “Coaches”, desc: “Premium presence that closes” }, { icon: “πŸŽ‰”, title: “Event Pros”, desc: “Hype content that books gigs” }, { icon: “πŸ–οΈ”, title: “Hotels & Airbnb”, desc: “Experience storytelling that converts” }, ]; const packages = [ { tier: “Starter”, name: “The Spark”, price: “$200”, period: “per video”, hot: false, features: [“1 AI video ad (15–30 sec)”, “1 round of revisions”, “Reels + Stories format”, “3-day delivery”], }, { tier: “Growth”, name: “Momentum”, price: “$500”, period: “per month”, hot: true, features: [“4 AI videos per month”, “Caption copy included”, “All formats delivered”, “48hr priority turnaround”], }, { tier: “Pro”, name: “Brand Builder”, price: “$1,200”, period: “per month”, hot: false, features: [“8 AI videos per month”, “Brand style guide”, “1 hero brand video / mo”, “Bi-weekly strategy calls”], }, { tier: “VIP”, name: “Retainer”, price: “$2,500”, period: “per month”, hot: false, features: [“Up to 15 creatives / month”, “Full content management”, “Direct text/DM access”, “Exclusive β€” 2 clients max”], }, ]; const delivers = [ { num: “01”, title: “AI Video Ads”, body: “Cinematic 15–60 second clips that make your business look like a million-dollar brand β€” ready to post on Instagram, Facebook & TikTok.” }, { num: “02”, title: “Caption & Copy”, body: “Every ad comes with professionally written caption copy and hashtags β€” you just copy, paste, and post.” }, { num: “03”, title: “Multi-Format Delivery”, body: “Reels (9:16), Stories (9:16), and Square (1:1) formats included β€” covered on every platform and placement.” }, { num: “04”, title: “Brand Consistency”, body: “Colors, fonts, logo placement, and tone stay consistent across every piece of content we create for you.” }, ]; const steps = [ { num: “01”, title: “You Reach Out”, body: “DM us on Instagram or click below. We grab your brand info and what you want to promote.” }, { num: “02”, title: “Free Ad Built”, body: “We create a complimentary sample so you can see exactly what your content will look like.” }, { num: “03”, title: “Love It or Leave It”, body: “Zero pressure. If you’re blown away, we talk packages. If not, it cost you nothing.” }, { num: “04”, title: “Content Ships Weekly”, body: “Polished, ready-to-post content lands in your inbox. You just hit share.” }, ]; const tickerItems = [“AI VIDEO ADS”, “SCROLL-STOPPING CONTENT”, “48HR TURNAROUND”, “HAMPTONS LOCAL”, “REAL RESULTS”, “FREE FIRST AD”]; return (
{/* NAV */}
HMPTN.AI
Get Your Free Ad {/* HERO */}

AI-Powered Advertising Β· The Hamptons Β· 11968

YOUR BRAND.
IMPOSSIBLE
TO IGNORE.

We create cinematic, AI-generated video ads for local Hamptons businesses β€” scroll-stopping content that fills seats, books appointments, and drives real revenue.

{/* TICKER */}
{`@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }`}
{[…tickerItems, …tickerItems].map((item, i) => ( {item}{i % tickerItems.length !== tickerItems.length – 1 ? ✦ : null} ))}
{/* WHAT WE DELIVER */}

What We Deliver

CONTENT THAT ACTUALLY CONVERTS

{delivers.map((d) => (
{d.num}
{d.title}
{d.body}
))}
{/* WHO WE SERVE */}

Who We Work With

BUILT FOR HAMPTONS BUSINESSES

{niches.map((n) => (
{n.icon}
{n.title}
{n.desc}
))}
{/* PRICING */}

Packages

STRAIGHT-FORWARD PRICING

{packages.map((pkg) => (
{pkg.hot && (
Most Popular
)}
{pkg.tier}
{pkg.name}
{pkg.price}
{pkg.period}
{pkg.features.map((f) => (
β†’ {f}
))}
))}
{/* HOW IT WORKS */}

How It Works

SIMPLE. FAST. RESULTS.

{steps.map((s) => (
{s.num}
{s.title}
{s.body}
))}
{/* CTA */}

Limited Availability

GET YOUR FREE AD TODAY

We only take on a handful of new clients at a time. If you’re a Hamptons business ready to dominate Instagram β€” let’s talk.

DM Us on Instagram β†’
{/* FOOTER */}
HMPTN.AI
Serving Southampton & The Hamptons Β· 11968
Β© 2025 All Rights Reserved
); }