|
|
|
|
@@ -2,6 +2,8 @@
|
|
|
|
|
|
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
|
|
|
import ReactLenis from "lenis/react";
|
|
|
|
|
import { useState } from "react";
|
|
|
|
|
import { Sparkles, LayoutGrid, Zap } from "lucide-react";
|
|
|
|
|
import ContactCTA from '@/components/sections/contact/ContactCTA';
|
|
|
|
|
import FaqDouble from '@/components/sections/faq/FaqDouble';
|
|
|
|
|
import FeatureBento from '@/components/sections/feature/FeatureBento';
|
|
|
|
|
@@ -11,9 +13,11 @@ import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloating
|
|
|
|
|
import PricingCardOne from '@/components/sections/pricing/PricingCardOne';
|
|
|
|
|
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
|
|
|
|
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
|
|
|
|
|
import TextAbout from '@/components/sections/about/TextAbout';
|
|
|
|
|
import Input from '@/components/form/Input';
|
|
|
|
|
|
|
|
|
|
export default function LandingPage() {
|
|
|
|
|
const [url, setUrl] = useState("");
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<ThemeProvider
|
|
|
|
|
defaultButtonVariant="shift-hover"
|
|
|
|
|
@@ -31,18 +35,12 @@ export default function LandingPage() {
|
|
|
|
|
<div id="nav" data-section="nav">
|
|
|
|
|
<NavbarLayoutFloatingInline
|
|
|
|
|
navItems={[
|
|
|
|
|
{
|
|
|
|
|
name: "How it Works", id: "#how-it-works"},
|
|
|
|
|
{
|
|
|
|
|
name: "Features", id: "#features"},
|
|
|
|
|
{
|
|
|
|
|
name: "Pricing", id: "#pricing"},
|
|
|
|
|
{
|
|
|
|
|
name: "FAQ", id: "#faq"},
|
|
|
|
|
{ name: "How it Works", id: "#how-it-works" },
|
|
|
|
|
{ name: "Pricing", id: "#pricing" },
|
|
|
|
|
{ name: "FAQ", id: "#faq" },
|
|
|
|
|
]}
|
|
|
|
|
brandName="Place2Page"
|
|
|
|
|
button={{
|
|
|
|
|
text: "Get Started", href: "/payment"}}
|
|
|
|
|
button={{ text: "Get Started", href: "/payment" }}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
@@ -51,8 +49,7 @@ export default function LandingPage() {
|
|
|
|
|
logoText="Place2Page"
|
|
|
|
|
description="Turn your Google Maps listing into a professional, SEO-optimized website instantly—no coding, no designers, no headaches. Let AI do the heavy lifting while you focus on your business."
|
|
|
|
|
buttons={[
|
|
|
|
|
{
|
|
|
|
|
text: "Start Free for 30 Days", href: "/payment"},
|
|
|
|
|
{ text: "Start Free for 30 Days", href: "/payment" },
|
|
|
|
|
]}
|
|
|
|
|
slides={[
|
|
|
|
|
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DKQM9lPNI4lPQ9uPYtLimgRQHP/a-futuristic-ai-powered-dashboard-interf-1778205391570-f4e98867.png?_wi=1", imageAlt: "Dashboard preview" },
|
|
|
|
|
@@ -65,6 +62,35 @@ export default function LandingPage() {
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div id="make" data-section="make" className="py-16 px-4 max-w-4xl mx-auto space-y-8">
|
|
|
|
|
<div className="bg-card p-8 rounded-2xl shadow-lg border">
|
|
|
|
|
<h2 className="text-3xl font-bold mb-4">Create Your Website</h2>
|
|
|
|
|
<Input value={url} onChange={setUrl} placeholder="Paste your Google Maps URL here..." />
|
|
|
|
|
|
|
|
|
|
<div className="mt-8 space-y-4">
|
|
|
|
|
<h3 className="font-semibold">Select Style</h3>
|
|
|
|
|
<div className="grid grid-cols-1 md:grid-cols-3 gap-4">
|
|
|
|
|
<button className="p-4 border rounded-xl hover:border-primary transition">Random Style</button>
|
|
|
|
|
<button className="p-4 border rounded-xl hover:border-primary transition">Modern Minimal</button>
|
|
|
|
|
<button className="p-4 border rounded-xl hover:border-primary transition">Bold & Vibrant</button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div id="contact" data-section="contact">
|
|
|
|
|
<ContactCTA
|
|
|
|
|
useInvertedBackground={false}
|
|
|
|
|
background={{ variant: "sparkles-gradient" }}
|
|
|
|
|
tag="Ready to get started?"
|
|
|
|
|
title="Launch Your Site Today"
|
|
|
|
|
description="Stop struggling with web development and join the future of local business."
|
|
|
|
|
buttons={[
|
|
|
|
|
{ text: "Start with a Maps URL", href: "/payment" },
|
|
|
|
|
]}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div id="how-it-works" data-section="how-it-works">
|
|
|
|
|
<FeatureBento
|
|
|
|
|
animationType="slide-up"
|
|
|
|
|
@@ -72,21 +98,21 @@ export default function LandingPage() {
|
|
|
|
|
useInvertedBackground={false}
|
|
|
|
|
features={[
|
|
|
|
|
{
|
|
|
|
|
title: "Copy Maps Link", description: "Grab your existing business URL from Google Maps.", bentoComponent: "media-stack", items: [
|
|
|
|
|
title: "Copy Maps Link", description: "Grab your existing business URL from Google Maps.", bentoComponent: "media-stack", items: [
|
|
|
|
|
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DKQM9lPNI4lPQ9uPYtLimgRQHP/an-illustration-showing-a-user-copying-a-1778205398915-b342abda.png?_wi=1", imageAlt: "Step 1" },
|
|
|
|
|
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DKQM9lPNI4lPQ9uPYtLimgRQHP/an-illustration-showing-a-user-copying-a-1778205477429-83e8a8c4.png", imageAlt: "Step 1" },
|
|
|
|
|
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DKQM9lPNI4lPQ9uPYtLimgRQHP/an-illustration-showing-a-user-copying-a-1778205486261-92cf6a54.png", imageAlt: "Step 1" },
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: "AI Magic", description: "Paste it into Place2Page and watch our AI build your site.", bentoComponent: "media-stack", items: [
|
|
|
|
|
title: "AI Magic", description: "Paste it into Place2Page and watch our AI build your site.", bentoComponent: "media-stack", items: [
|
|
|
|
|
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DKQM9lPNI4lPQ9uPYtLimgRQHP/an-illustration-showing-ai-processing-th-1778205407339-e99e664f.png?_wi=1", imageAlt: "Step 2" },
|
|
|
|
|
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DKQM9lPNI4lPQ9uPYtLimgRQHP/an-illustration-showing-ai-processing-th-1778205495442-cd89e88d.png", imageAlt: "Step 2" },
|
|
|
|
|
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DKQM9lPNI4lPQ9uPYtLimgRQHP/an-illustration-showing-ai-processing-th-1778205505462-e7d84244.png", imageAlt: "Step 2" },
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: "Go Live", description: "Publish your professional, SEO-ready website instantly.", bentoComponent: "media-stack", items: [
|
|
|
|
|
title: "Go Live", description: "Publish your professional, SEO-ready website instantly.", bentoComponent: "media-stack", items: [
|
|
|
|
|
{ imageSrc: "http://img.b2bpic.net/free-photo/female-white-suit-sitting-table-with-her-laptop-near-green-bushes_181624-23858.jpg", imageAlt: "Step 3" },
|
|
|
|
|
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DKQM9lPNI4lPQ9uPYtLimgRQHP/an-illustration-of-a-beautiful-live-webs-1778205515348-feecac2b.png", imageAlt: "Step 3" },
|
|
|
|
|
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DKQM9lPNI4lPQ9uPYtLimgRQHP/an-illustration-of-a-beautiful-live-webs-1778205523861-0547b204.png", imageAlt: "Step 3" },
|
|
|
|
|
@@ -98,17 +124,6 @@ export default function LandingPage() {
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div id="features" data-section="features">
|
|
|
|
|
<TextAbout
|
|
|
|
|
useInvertedBackground={false}
|
|
|
|
|
title="Powerful AI Engine"
|
|
|
|
|
buttons={[
|
|
|
|
|
{
|
|
|
|
|
text: "See All Features"},
|
|
|
|
|
]}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div id="testimonials" data-section="testimonials">
|
|
|
|
|
<TestimonialCardFive
|
|
|
|
|
textboxLayout="split"
|
|
|
|
|
@@ -132,10 +147,10 @@ export default function LandingPage() {
|
|
|
|
|
useInvertedBackground={false}
|
|
|
|
|
plans={[
|
|
|
|
|
{
|
|
|
|
|
id: "basic", badge: "Basic", price: "$0/mo", subtitle: "Essential tools for getting started.", features: [ "Basic listing page", "AI content generation", "Standard support" ]
|
|
|
|
|
id: "basic", badge: "Basic", price: "$0/mo", subtitle: "Essential tools for getting started.", features: [ "Basic listing page", "AI content generation", "Standard support" ]
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: "core", badge: "Core", price: "$4.99/mo", subtitle: "Enhanced tools for growth.", features: [ "Everything in Basic", "Custom domain support", "Priority support" ]
|
|
|
|
|
id: "core", badge: "Core", price: "$4.99/mo", subtitle: "Enhanced tools for growth.", features: [ "Everything in Basic", "Custom domain support", "Priority support" ]
|
|
|
|
|
},
|
|
|
|
|
]}
|
|
|
|
|
title="Affordable Plans for Growing Businesses"
|
|
|
|
|
@@ -148,7 +163,7 @@ export default function LandingPage() {
|
|
|
|
|
textboxLayout="split"
|
|
|
|
|
useInvertedBackground={false}
|
|
|
|
|
names={[
|
|
|
|
|
"Google Maps", "Local SEO", "AI Engine", "Verified Trust", "Mobile First", "Global Reach", "Fast Load"]}
|
|
|
|
|
"Google Maps", "Local SEO", "AI Engine", "Verified Trust", "Mobile First", "Global Reach", "Fast Load"]}
|
|
|
|
|
title="Supporting Your Local Growth"
|
|
|
|
|
description="Powered by leading tech integrations."
|
|
|
|
|
/>
|
|
|
|
|
@@ -169,39 +184,22 @@ export default function LandingPage() {
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div id="contact" data-section="contact">
|
|
|
|
|
<ContactCTA
|
|
|
|
|
useInvertedBackground={false}
|
|
|
|
|
background={{ variant: "sparkles-gradient" }}
|
|
|
|
|
tag="Ready to get started?"
|
|
|
|
|
title="Launch Your Site Today"
|
|
|
|
|
description="Stop struggling with web development and join the future of local business."
|
|
|
|
|
buttons={[
|
|
|
|
|
{
|
|
|
|
|
text: "Start 30-Day Free Trial", href: "/payment"},
|
|
|
|
|
]}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div id="footer" data-section="footer">
|
|
|
|
|
<FooterBase
|
|
|
|
|
columns={[
|
|
|
|
|
{
|
|
|
|
|
title: "Product", items: [
|
|
|
|
|
{ label: "Features", href: "#features" },
|
|
|
|
|
title: "Product", items: [
|
|
|
|
|
{ label: "Pricing", href: "#pricing" },
|
|
|
|
|
{ label: "FAQ", href: "#faq" },
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: "Company", items: [
|
|
|
|
|
{ label: "About Us", href: "/#" },
|
|
|
|
|
{ label: "Careers", href: "/#" },
|
|
|
|
|
title: "Company", items: [
|
|
|
|
|
{ label: "Contact", href: "#contact" },
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: "Legal", items: [
|
|
|
|
|
title: "Legal", items: [
|
|
|
|
|
{ label: "Privacy Policy", href: "/#" },
|
|
|
|
|
{ label: "Terms of Service", href: "/#" },
|
|
|
|
|
],
|
|
|
|
|
@@ -213,4 +211,4 @@ export default function LandingPage() {
|
|
|
|
|
</ReactLenis>
|
|
|
|
|
</ThemeProvider>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|