17 Commits

Author SHA1 Message Date
25a9884bcf Update src/app/payment/page.tsx 2026-05-08 05:38:35 +00:00
c91c5ae9b0 Update src/app/page.tsx 2026-05-08 05:38:35 +00:00
c4b1610f7f Merge version_12 into main
Merge version_12 into main
2026-05-08 05:33:16 +00:00
e0176866a9 Update src/app/make/page.tsx 2026-05-08 05:33:13 +00:00
ab36471b80 Merge version_11 into main
Merge version_11 into main
2026-05-08 05:30:33 +00:00
9458b3ac40 Update src/app/make/page.tsx 2026-05-08 05:30:30 +00:00
e7272ced23 Merge version_10 into main
Merge version_10 into main
2026-05-08 05:27:57 +00:00
b265e968c4 Update src/app/payment/page.tsx 2026-05-08 05:27:54 +00:00
999684ae8a Update src/app/page.tsx 2026-05-08 05:27:54 +00:00
9809f33409 Add src/app/make/page.tsx 2026-05-08 05:27:54 +00:00
799c671fb4 Merge version_9 into main
Merge version_9 into main
2026-05-08 05:24:28 +00:00
6af842a231 Update src/app/page.tsx 2026-05-08 05:24:22 +00:00
671b900c90 Merge version_8 into main
Merge version_8 into main
2026-05-08 05:18:05 +00:00
b91a68f526 Update src/app/payment/page.tsx 2026-05-08 05:18:02 +00:00
eb2098f82a Update src/app/page.tsx 2026-05-08 05:18:01 +00:00
19b888d340 Merge version_7 into main
Merge version_7 into main
2026-05-08 05:09:15 +00:00
5a2b636cb7 Merge version_6 into main
Merge version_6 into main
2026-05-08 05:08:13 +00:00
3 changed files with 75 additions and 18 deletions

68
src/app/make/page.tsx Normal file
View File

@@ -0,0 +1,68 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import { useState } from "react";
import Input from '@/components/form/Input';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import FooterBase from '@/components/sections/footer/FooterBase';
export default function MakePage() {
const [url, setUrl] = useState("");
return (
<ThemeProvider
defaultButtonVariant="shift-hover"
defaultTextAnimation="background-highlight"
borderRadius="soft"
contentWidth="mediumSmall"
sizing="large"
background="grid"
cardStyle="layered-gradient"
primaryButtonStyle="radial-glow"
secondaryButtonStyle="layered"
headingFontWeight="semibold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "How it Works", id: "/#how-it-works" },
{ name: "Pricing", id: "/#pricing" },
{ name: "FAQ", id: "/#faq" },
]}
brandName="Place2Page"
button={{ text: "Get Started", href: "/payment" }}
/>
</div>
<div className="pt-32 pb-20 px-4 max-w-4xl mx-auto">
<div id="make" data-section="make" 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">
<button
onClick={() => console.log("Generating page for:", url)}
className="w-full py-4 px-6 bg-[var(--primary-cta)] text-[var(--primary-cta-text)] rounded-xl font-semibold hover:opacity-90 transition">
Generate the page
</button>
</div>
</div>
</div>
<div id="footer" data-section="footer">
<FooterBase
columns={[
{ title: "Product", items: [{ label: "Pricing", href: "/#pricing" }, { label: "FAQ", href: "/#faq" }] },
{ title: "Company", items: [{ label: "Contact", href: "/#contact" }] },
{ title: "Legal", items: [{ label: "Privacy Policy", href: "/#" }, { label: "Terms of Service", href: "/#" }] },
]}
logoText="Place2Page"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}

View File

@@ -11,7 +11,6 @@ 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';
export default function LandingPage() {
return (
@@ -31,8 +30,8 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{ name: "Make", id: "/make" },
{ name: "How it Works", id: "#how-it-works" },
{ name: "Features", id: "#features" },
{ name: "Pricing", id: "#pricing" },
{ name: "FAQ", id: "#faq" },
]}
@@ -67,7 +66,7 @@ export default function LandingPage() {
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" },
{ text: "Start with a Maps URL", href: "/make" },
]}
/>
</div>
@@ -105,13 +104,6 @@ export default function LandingPage() {
/>
</div>
<div id="features" data-section="features">
<TextAbout
useInvertedBackground={false}
title="Trusted by Local Business Founders"
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardFive
textboxLayout="split"
@@ -177,15 +169,12 @@ export default function LandingPage() {
columns={[
{
title: "Product", items: [
{ label: "Features", href: "#features" },
{ label: "Pricing", href: "#pricing" },
{ label: "FAQ", href: "#faq" },
],
},
{
title: "Company", items: [
{ label: "About Us", href: "/#" },
{ label: "Careers", href: "/#" },
{ label: "Contact", href: "#contact" },
],
},
@@ -202,4 +191,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -28,8 +28,8 @@ export default function PaymentPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{ name: "Make", id: "/make" },
{ name: "How it Works", id: "/#how-it-works" },
{ name: "Features", id: "/#features" },
{ name: "Pricing", id: "/#pricing" },
{ name: "FAQ", id: "/#faq" },
]}
@@ -61,8 +61,8 @@ export default function PaymentPage() {
<div id="footer" data-section="footer">
<FooterBase
columns={[
{ title: "Product", items: [{ label: "Features", href: "/#features" }, { label: "Pricing", href: "/#pricing" }, { label: "FAQ", href: "/#faq" }] },
{ title: "Company", items: [{ label: "About Us", href: "/#" }, { label: "Careers", href: "/#" }, { label: "Contact", href: "/#contact" }] },
{ title: "Product", items: [{ label: "Pricing", href: "/#pricing" }, { label: "FAQ", href: "/#faq" }] },
{ title: "Company", items: [{ label: "Contact", href: "/#contact" }] },
{ title: "Legal", items: [{ label: "Privacy Policy", href: "/#" }, { label: "Terms of Service", href: "/#" }] },
]}
logoText="Place2Page"
@@ -71,4 +71,4 @@ export default function PaymentPage() {
</ReactLenis>
</ThemeProvider>
);
}
}