10 Commits

Author SHA1 Message Date
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
2132176378 Update theme colors 2026-05-08 05:09:12 +00:00
5a2b636cb7 Merge version_6 into main
Merge version_6 into main
2026-05-08 05:08:13 +00:00
01dc1fcea0 Update src/app/payment/page.tsx 2026-05-08 05:08:10 +00:00
7b0c88aad7 Update src/app/page.tsx 2026-05-08 05:08:10 +00:00
d4f140df46 Merge version_5 into main
Merge version_5 into main
2026-05-08 05:01:51 +00:00
afa905743d Update src/app/payment/page.tsx 2026-05-08 05:01:45 +00:00
b599e6514c Merge version_4 into main
Merge version_4 into main
2026-05-08 04:58:02 +00:00
3 changed files with 46 additions and 66 deletions

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,18 +30,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 +44,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 +57,19 @@ 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 with a Maps URL", href: "/payment" },
]}
/>
</div>
<div id="how-it-works" data-section="how-it-works">
<FeatureBento
animationType="slide-up"
@@ -98,17 +103,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"
@@ -169,34 +163,17 @@ 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" },
{ label: "Pricing", href: "#pricing" },
{ label: "FAQ", href: "#faq" },
],
},
{
title: "Company", items: [
{ label: "About Us", href: "/#" },
{ label: "Careers", href: "/#" },
{ label: "Contact", href: "#contact" },
],
},

View File

@@ -7,6 +7,10 @@ import PricingCardTwo from '@/components/sections/pricing/PricingCardTwo';
import FooterBase from '@/components/sections/footer/FooterBase';
export default function PaymentPage() {
const handlePayment = () => {
alert("Opening secure payment gateway for Visa / Mastercard...");
};
return (
<ThemeProvider
defaultButtonVariant="shift-hover"
@@ -25,7 +29,6 @@ export default function PaymentPage() {
<NavbarLayoutFloatingInline
navItems={[
{ name: "How it Works", id: "/#how-it-works" },
{ name: "Features", id: "/#features" },
{ name: "Pricing", id: "/#pricing" },
{ name: "FAQ", id: "/#faq" },
]}
@@ -43,11 +46,11 @@ export default function PaymentPage() {
description="Select the perfect plan to get your local business online."
plans={[
{
id: "basic", badge: "Basic", price: "$0/mo", subtitle: "Essential tools for getting started.", buttons: [{ text: "Choose this", href: "#" }],
id: "basic", badge: "Basic", price: "$0/mo", subtitle: "Essential tools for getting started.", buttons: [{ text: "Get Started", onClick: handlePayment }],
features: ["Basic listing page", "AI content generation", "Standard support"]
},
{
id: "core", badge: "Core", price: "$4.99/mo", subtitle: "Enhanced tools for growth.", buttons: [{ text: "Choose this", href: "#" }],
id: "core", badge: "Core", price: "$4.99/mo", subtitle: "Enhanced tools for growth.", buttons: [{ text: "Get Started", onClick: handlePayment }],
features: ["Everything in Basic", "Custom domain support", "Priority support"]
}
]}
@@ -57,8 +60,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"

View File

@@ -10,15 +10,15 @@
--accent: #ffffff;
--background-accent: #ffffff; */
--background: #f7f6f7;
--card: #ffffff;
--foreground: #25190c;
--primary-cta: #ff6207;
--primary-cta-text: #f7f6f7;
--secondary-cta: #ffffff;
--secondary-cta-text: #25190c;
--accent: #ffce93;
--background-accent: #e8cfa8;
--background: #ffffff;
--card: #f9f9f9;
--foreground: #000612e6;
--primary-cta: #15479c;
--primary-cta-text: #ffffff;
--secondary-cta: #f9f9f9;
--secondary-cta-text: #000612e6;
--accent: #e2e2e2;
--background-accent: #c4c4c4;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);