From 90c71b691a781ef9cfa52dcbdea0be91869629b4 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 2 May 2026 09:10:04 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 103 +++++++++++++++-------------------------------- 1 file changed, 33 insertions(+), 70 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 1c91574..ac5d200 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -7,7 +7,7 @@ import FaqDouble from '@/components/sections/faq/FaqDouble'; import FeatureCardTwentyOne from '@/components/sections/feature/FeatureCardTwentyOne'; import FooterSimple from '@/components/sections/footer/FooterSimple'; import HeroLogo from '@/components/sections/hero/HeroLogo'; -import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import PricingCardEight from '@/components/sections/pricing/PricingCardEight'; import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; @@ -29,14 +29,11 @@ export default function LandingPage() { > @@ -92,20 +84,12 @@ export default function LandingPage() { useInvertedBackground={true} plans={[ { - id: "free", badge: "Free", price: "$0", subtitle: "Basic features for everyone", buttons: [ - { - text: "Get Started"}, - ], - features: [ - "1 Bio Link", "Basic Analytics", "Standard Themes"], + id: "free", badge: "Free", price: "$0", subtitle: "Basic features for everyone", buttons: [{ text: "Get Started" }], + features: ["1 Bio Link", "Basic Analytics", "Standard Themes"], }, { - id: "pro", badge: "Pro", price: "$12/mo", subtitle: "For creators scaling their revenue", buttons: [ - { - text: "Choose Pro"}, - ], - features: [ - "Unlimited Links", "Advanced Analytics", "Custom Domain", "Remove Branding"], + id: "pro", badge: "Pro", price: "$12/mo", subtitle: "For creators scaling their revenue", buttons: [{ text: "Choose Pro" }], + features: ["Unlimited Links", "Advanced Analytics", "Custom Domain", "Remove Branding"], }, ]} title="Plans for everyone" @@ -117,8 +101,7 @@ export default function LandingPage() { @@ -131,21 +114,11 @@ export default function LandingPage() { gridVariant="uniform-all-items-equal" useInvertedBackground={true} testimonials={[ - { - id: "1", name: "Alex Riv", role: "Influencer", company: "Creative Hub", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-with-trendy-hairstyle_23-2149405995.jpg"}, - { - id: "2", name: "Maria Lee", role: "Founder", company: "Growth Co", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/young-businesswoman-portrait-office_1262-1506.jpg"}, - { - id: "3", name: "Sam Chen", role: "Tech Lead", company: "DevLab", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/smiling-mechanic-standing-repair-shop_1170-1349.jpg"}, - { - id: "4", name: "Elena P", role: "Content Creator", company: "Streamer Pro", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/transgender-person-wearing-yellow-jacket-standing-sideways_23-2148827063.jpg"}, - { - id: "5", name: "Julian W", role: "Designer", company: "Visuals Inc", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/beautiful-young-businesswoman-smiling-camera_74855-3966.jpg"}, + { id: "1", name: "Alex Riv", role: "Influencer", company: "Creative Hub", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-with-trendy-hairstyle_23-2149405995.jpg" }, + { id: "2", name: "Maria Lee", role: "Founder", company: "Growth Co", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/young-businesswoman-portrait-office_1262-1506.jpg" }, + { id: "3", name: "Sam Chen", role: "Tech Lead", company: "DevLab", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/smiling-mechanic-standing-repair-shop_1170-1349.jpg" }, + { id: "4", name: "Elena P", role: "Content Creator", company: "Streamer Pro", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/transgender-person-wearing-yellow-jacket-standing-sideways_23-2148827063.jpg" }, + { id: "5", name: "Julian W", role: "Designer", company: "Visuals Inc", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/beautiful-young-businesswoman-smiling-camera_74855-3966.jpg" }, ]} title="What our users say" description="See why top creators choose BioLink." @@ -157,12 +130,9 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={false} faqs={[ - { - id: "1", title: "Is BioLink free?", content: "Yes, we offer a generous free tier for everyone."}, - { - id: "2", title: "Can I use my own domain?", content: "Yes, custom domains are available in our Pro plan."}, - { - id: "3", title: "Is it mobile-friendly?", content: "Absolutely, our pages are optimized for all devices."}, + { id: "1", title: "Is BioLink free?", content: "Yes, we offer a generous free tier for everyone." }, + { id: "2", title: "Can I use my own domain?", content: "Yes, custom domains are available in our Pro plan." }, + { id: "3", title: "Is it mobile-friendly?", content: "Absolutely, our pages are optimized for all devices." }, ]} title="Common Questions" description="Everything you need to know about BioLink." @@ -176,13 +146,10 @@ export default function LandingPage() { title="Get in touch" description="Questions? We are here to help you get started." inputs={[ - { - name: "name", type: "text", placeholder: "Your Name"}, - { - name: "email", type: "email", placeholder: "Email Address"}, + { name: "name", type: "text", placeholder: "Your Name" }, + { name: "email", type: "email", placeholder: "Email Address" }, ]} - textarea={{ - name: "message", placeholder: "Your message here"}} + textarea={{ name: "message", placeholder: "Your message here" }} imageSrc="http://img.b2bpic.net/free-photo/security-guard-workspace_23-2150321692.jpg" /> @@ -191,19 +158,15 @@ export default function LandingPage() { ); -} +} \ No newline at end of file -- 2.49.1