Update src/app/page.tsx

This commit is contained in:
2026-05-06 13:11:24 +00:00
parent 14e2dcf573
commit 1c656ef459

View File

@@ -31,22 +31,10 @@ export default function LandingPage() {
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarStyleCentered <NavbarStyleCentered
navItems={[ navItems={[
{ { name: "About", id: "#about" },
name: "About", { name: "Services", id: "#services" },
id: "#about", { name: "FAQ", id: "#faq" },
}, { name: "Contact", id: "#contact" },
{
name: "Services",
id: "#services",
},
{
name: "FAQ",
id: "#faq",
},
{
name: "Contact",
id: "#contact",
},
]} ]}
brandName="USA Corporate Services Inc." brandName="USA Corporate Services Inc."
/> />
@@ -57,75 +45,20 @@ export default function LandingPage() {
title="Excellence in Corporate Services" title="Excellence in Corporate Services"
description="USA Corporate Services Inc. provides unparalleled support for your business formation, compliance, and operational needs. Trust our expertise to guide your growth." description="USA Corporate Services Inc. provides unparalleled support for your business formation, compliance, and operational needs. Trust our expertise to guide your growth."
testimonials={[ testimonials={[
{ { name: "John Doe", handle: "@johndoe", testimonial: "Exceptional service! They handled everything perfectly.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/luxury-nightclub-features-modern-decor-lighting-equipment-generated-by-ai_188544-45394.jpg", imageAlt: "modern office board room" },
name: "John Doe", { name: "Jane Smith", handle: "@janesmith", testimonial: "Professional, efficient, and very knowledgeable.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/senior-man-taking-notes-class_23-2149114297.jpg", imageAlt: "modern office board room" },
handle: "@johndoe", { name: "Alex River", handle: "@ariver", testimonial: "The fastest registration process I've encountered.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/3d-cartoon-portrait-person-practicing-law-related-profession_23-2151419528.jpg", imageAlt: "modern office board room" },
testimonial: "Exceptional service! They handled everything perfectly.", { name: "Sam Taylor", handle: "@staylor", testimonial: "Expert guidance that saved us countless hours.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/top-view-business-people-working-with-ipad_23-2150103556.jpg", imageAlt: "modern office board room" },
rating: 5, { name: "Morgan Lee", handle: "@mlee", testimonial: "Reliable and consistent support for my startup.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/standard-quality-control-concept-m_23-2150041840.jpg", imageAlt: "modern office board room" }
imageSrc: "http://img.b2bpic.net/free-photo/luxury-nightclub-features-modern-decor-lighting-equipment-generated-by-ai_188544-45394.jpg?_wi=1",
imageAlt: "modern office board room",
},
{
name: "Jane Smith",
handle: "@janesmith",
testimonial: "Professional, efficient, and very knowledgeable.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/senior-man-taking-notes-class_23-2149114297.jpg?_wi=1",
imageAlt: "modern office board room",
},
{
name: "Alex River",
handle: "@ariver",
testimonial: "The fastest registration process I've encountered.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/3d-cartoon-portrait-person-practicing-law-related-profession_23-2151419528.jpg?_wi=1",
imageAlt: "modern office board room",
},
{
name: "Sam Taylor",
handle: "@staylor",
testimonial: "Expert guidance that saved us countless hours.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/top-view-business-people-working-with-ipad_23-2150103556.jpg",
imageAlt: "modern office board room",
},
{
name: "Morgan Lee",
handle: "@mlee",
testimonial: "Reliable and consistent support for my startup.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/standard-quality-control-concept-m_23-2150041840.jpg",
imageAlt: "modern office board room",
},
]} ]}
buttons={[ buttons={[{ text: "Get Started", href: "#contact" }]}
{ imageSrc="http://img.b2bpic.net/free-photo/luxury-nightclub-features-modern-decor-lighting-equipment-generated-by-ai_188544-45394.jpg"
text: "Get Started",
href: "#contact",
},
]}
imageSrc="http://img.b2bpic.net/free-photo/luxury-nightclub-features-modern-decor-lighting-equipment-generated-by-ai_188544-45394.jpg?_wi=2"
avatars={[ avatars={[
{ { src: "http://img.b2bpic.net/free-photo/happy-employee_1098-16109.jpg", alt: "Happy employee" },
src: "http://img.b2bpic.net/free-photo/happy-employee_1098-16109.jpg", { src: "http://img.b2bpic.net/free-photo/successful-senior-businessman-standing-window_1262-3120.jpg", alt: "Successful senior businessman standing at window" },
alt: "Happy employee", { src: "http://img.b2bpic.net/free-photo/smiling-senior-businessman-sitting-stairs_1262-3109.jpg", alt: "Smiling senior businessman sitting on stairs" },
}, { src: "http://img.b2bpic.net/free-photo/smiling-mature-businessman-using-digital-tablet-caf_23-2147955292.jpg", alt: "Smiling mature businessman using digital tablet in cafe" },
{ { src: "http://img.b2bpic.net/free-photo/portrait-confident-young-businesswoman-digital-nomad-posing-her-office-wearing-casual-clothes_1258-195343.jpg", alt: "Portrait of confident young businesswoman" }
src: "http://img.b2bpic.net/free-photo/successful-senior-businessman-standing-window_1262-3120.jpg",
alt: "Successful senior businessman standing at window",
},
{
src: "http://img.b2bpic.net/free-photo/smiling-senior-businessman-sitting-stairs_1262-3109.jpg",
alt: "Smiling senior businessman sitting on stairs",
},
{
src: "http://img.b2bpic.net/free-photo/smiling-mature-businessman-using-digital-tablet-caf_23-2147955292.jpg",
alt: "Smiling mature businessman using digital tablet in cafe",
},
{
src: "http://img.b2bpic.net/free-photo/portrait-confident-young-businesswoman-digital-nomad-posing-her-office-wearing-casual-clothes_1258-195343.jpg",
alt: "Portrait of confident young businesswoman",
},
]} ]}
/> />
</div> </div>
@@ -136,16 +69,10 @@ export default function LandingPage() {
title="Your Partner in Growth" title="Your Partner in Growth"
description="We specialize in helping businesses of all sizes navigate the complex landscape of corporate compliance and administration." description="We specialize in helping businesses of all sizes navigate the complex landscape of corporate compliance and administration."
metrics={[ metrics={[
{ { value: "15+", title: "Years Experience" },
value: "15+", { value: "5000+", title: "Clients Served" }
title: "Years Experience",
},
{
value: "5000+",
title: "Clients Served",
},
]} ]}
imageSrc="http://img.b2bpic.net/free-photo/senior-man-taking-notes-class_23-2149114297.jpg?_wi=2" imageSrc="http://img.b2bpic.net/free-photo/senior-man-taking-notes-class_23-2149114297.jpg"
mediaAnimation="slide-up" mediaAnimation="slide-up"
metricsAnimation="blur-reveal" metricsAnimation="blur-reveal"
/> />
@@ -157,30 +84,9 @@ export default function LandingPage() {
textboxLayout="split" textboxLayout="split"
useInvertedBackground={false} useInvertedBackground={false}
features={[ features={[
{ { title: "Business Formation", description: "Seamless entity setup and registration.", bentoComponent: "reveal-icon", icon: CheckCircle },
title: "Business Formation", { title: "Compliance Management", description: "Stay aligned with legal standards.", bentoComponent: "reveal-icon", icon: Shield },
description: "Seamless entity setup and registration.", { title: "Annual Filings", description: "Timely reports, always accurate.", bentoComponent: "reveal-icon", icon: FileText }
bentoComponent: "reveal-icon",
icon: CheckCircle,
imageSrc: "http://img.b2bpic.net/free-photo/3d-cartoon-portrait-person-practicing-law-related-profession_23-2151419528.jpg?_wi=2",
imageAlt: "business filing icon",
},
{
title: "Compliance Management",
description: "Stay aligned with legal standards.",
bentoComponent: "reveal-icon",
icon: Shield,
imageSrc: "http://img.b2bpic.net/free-photo/luxury-nightclub-features-modern-decor-lighting-equipment-generated-by-ai_188544-45394.jpg?_wi=3",
imageAlt: "business filing icon",
},
{
title: "Annual Filings",
description: "Timely reports, always accurate.",
bentoComponent: "reveal-icon",
icon: FileText,
imageSrc: "http://img.b2bpic.net/free-photo/senior-man-taking-notes-class_23-2149114297.jpg?_wi=3",
imageAlt: "business filing icon",
},
]} ]}
title="Comprehensive Business Services" title="Comprehensive Business Services"
description="Tailored solutions for your corporate success." description="Tailored solutions for your corporate success."
@@ -191,25 +97,11 @@ export default function LandingPage() {
<MetricCardThree <MetricCardThree
textboxLayout="default" textboxLayout="default"
useInvertedBackground={true} useInvertedBackground={true}
animationType="slide-up"
metrics={[ metrics={[
{ { id: "m1", title: "Client Retention", value: "98%", icon: Award },
id: "m1", { id: "m2", title: "Projects Completed", value: "12k+", icon: CheckCircle },
title: "Client Retention", { id: "m3", title: "Growth Rate", value: "25%", icon: Zap }
value: "98%",
icon: Award,
},
{
id: "m2",
title: "Projects Completed",
value: "12k+",
icon: CheckCircle,
},
{
id: "m3",
title: "Growth Rate",
value: "25%",
icon: Zap,
},
]} ]}
title="Our Impact" title="Our Impact"
description="Driving results for businesses across the country." description="Driving results for businesses across the country."
@@ -222,41 +114,11 @@ export default function LandingPage() {
textboxLayout="default" textboxLayout="default"
useInvertedBackground={false} useInvertedBackground={false}
testimonials={[ testimonials={[
{ { id: "1", name: "Michael Ross", handle: "@mross", testimonial: "Fantastic services throughout.", imageSrc: "http://img.b2bpic.net/free-photo/self-assured-business-leader-conference-room_1262-3068.jpg" },
id: "1", { id: "2", name: "Sarah Miller", handle: "@smiller", testimonial: "Truly professional experience.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-young-businesswoman_23-2147837532.jpg" },
name: "Michael Ross", { id: "3", name: "David King", handle: "@dking", testimonial: "Highly recommended for corporate filings.", imageSrc: "http://img.b2bpic.net/free-photo/full-body-portrait-confident-man-elegant-suit-standing-with-hands-pockets-against-skyscraper-background_613910-20129.jpg" },
handle: "@mross", { id: "4", name: "Anna Scott", handle: "@ascott", testimonial: "Efficient, reliable, and thorough.", imageSrc: "http://img.b2bpic.net/free-photo/smiling-beautiful-corporate-woman-beige-suit-standing-street-city-with-wireless-headphones_1258-194022.jpg" },
testimonial: "Fantastic services throughout.", { id: "5", name: "James Bond", handle: "@jbond", testimonial: "The best compliance team I've worked with.", imageSrc: "http://img.b2bpic.net/free-photo/female-executive-work-environment_1098-2056.jpg" }
imageSrc: "http://img.b2bpic.net/free-photo/self-assured-business-leader-conference-room_1262-3068.jpg",
},
{
id: "2",
name: "Sarah Miller",
handle: "@smiller",
testimonial: "Truly professional experience.",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-young-businesswoman_23-2147837532.jpg",
},
{
id: "3",
name: "David King",
handle: "@dking",
testimonial: "Highly recommended for corporate filings.",
imageSrc: "http://img.b2bpic.net/free-photo/full-body-portrait-confident-man-elegant-suit-standing-with-hands-pockets-against-skyscraper-background_613910-20129.jpg",
},
{
id: "4",
name: "Anna Scott",
handle: "@ascott",
testimonial: "Efficient, reliable, and thorough.",
imageSrc: "http://img.b2bpic.net/free-photo/smiling-beautiful-corporate-woman-beige-suit-standing-street-city-with-wireless-headphones_1258-194022.jpg",
},
{
id: "5",
name: "James Bond",
handle: "@jbond",
testimonial: "The best compliance team I've worked with.",
imageSrc: "http://img.b2bpic.net/free-photo/female-executive-work-environment_1098-2056.jpg",
},
]} ]}
title="Trusted by Leaders" title="Trusted by Leaders"
description="What our clients say about our corporate services." description="What our clients say about our corporate services."
@@ -268,21 +130,9 @@ export default function LandingPage() {
textboxLayout="split" textboxLayout="split"
useInvertedBackground={true} useInvertedBackground={true}
faqs={[ faqs={[
{ { id: "f1", title: "How do I start my business?", content: "Contact us to schedule a consultation." },
id: "f1", { id: "f2", title: "Are you nationwide?", content: "Yes, we support businesses across the US." },
title: "How do I start my business?", { id: "f3", title: "What compliance reports do I need?", content: "It depends on your entity and state." }
content: "Contact us to schedule a consultation.",
},
{
id: "f2",
title: "Are you nationwide?",
content: "Yes, we support businesses across the US.",
},
{
id: "f3",
title: "What compliance reports do I need?",
content: "It depends on your entity and state.",
},
]} ]}
title="Frequently Asked Questions" title="Frequently Asked Questions"
description="Clear answers to your business questions." description="Clear answers to your business questions."
@@ -295,9 +145,7 @@ export default function LandingPage() {
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">
<ContactSplit <ContactSplit
useInvertedBackground={false} useInvertedBackground={false}
background={{ background={{ variant: "gradient-bars" }}
variant: "gradient-bars",
}}
tag="Contact Us" tag="Contact Us"
title="Ready to get started?" title="Ready to get started?"
description="Reach out today and let's build your success story together." description="Reach out today and let's build your success story together."
@@ -312,35 +160,21 @@ export default function LandingPage() {
logoText="USA Corporate Services Inc." logoText="USA Corporate Services Inc."
columns={[ columns={[
{ {
title: "Services", title: "Services", items: [
items: [ { label: "Formation", href: "#services" },
{ { label: "Compliance", href: "#services" }
label: "Formation", ]
href: "#services",
},
{
label: "Compliance",
href: "#services",
},
],
}, },
{ {
title: "Support", title: "Support", items: [
items: [ { label: "FAQ", href: "#faq" },
{ { label: "Contact", href: "#contact" }
label: "FAQ", ]
href: "#faq", }
},
{
label: "Contact",
href: "#contact",
},
],
},
]} ]}
/> />
</div> </div>
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }