7 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
3 changed files with 10 additions and 12 deletions

View File

@@ -42,13 +42,12 @@ export default function MakePage() {
<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 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>
@@ -66,4 +65,4 @@ export default function MakePage() {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -2,7 +2,6 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import { useState } from "react";
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FaqDouble from '@/components/sections/faq/FaqDouble';
import FeatureBento from '@/components/sections/feature/FeatureBento';
@@ -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 with a Maps URL", href: "/payment" },
{ text: "Start with a Maps URL", href: "/make" },
]}
/>
</div>
@@ -192,4 +191,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -71,4 +71,4 @@ export default function PaymentPage() {
</ReactLenis>
</ThemeProvider>
);
}
}