Update src/app/page.tsx

This commit is contained in:
2026-02-22 12:23:07 +00:00
parent 3f175dbc22
commit 43ff17a5da

View File

@@ -32,14 +32,12 @@ export default function LandingPage() {
brandName="MyCo" brandName="MyCo"
navItems={[ navItems={[
{name: "Home", id: "/"}, {name: "Home", id: "/"},
{name: "About", id: "#about"}, {name: "About", id: "about"},
{name: "Features", id: "#features"}, {name: "Features", id: "features"},
{name: "Products", id: "#products"}, {name: "Products", id: "products"},
{name: "Testimonials", id: "#testimonials"}, {name: "Testimonials", id: "testimonials"},
{name: "FAQ", id: "#faq"}, {name: "FAQ", id: "faq"},
{name: "Contact", id: "#contact"}, {name: "Contact", id: "contact"}
{name: "Blog", id: "/blog"},
{name: "Shop", id: "/shop"}
]} ]}
/> />
</div> </div>
@@ -49,8 +47,8 @@ export default function LandingPage() {
logoText="MyCo" logoText="MyCo"
description="Innovative solutions for a brighter future." description="Innovative solutions for a brighter future."
buttons={[ buttons={[
{ text: "Get Started", href: "/#contact" }, { text: "Get Started", href: "#contact" },
{ text: "Learn More", href: "/#about" } { text: "Learn More", href: "#about" }
]} ]}
imageSrc="https://via.placeholder.com/1920x1080.png?text=Modern+Business" imageSrc="https://via.placeholder.com/1920x1080.png?text=Modern+Business"
imageAlt="Modern business cityscape" imageAlt="Modern business cityscape"
@@ -141,6 +139,7 @@ export default function LandingPage() {
faqsAnimation="slide-up" faqsAnimation="slide-up"
useInvertedBackground={false} useInvertedBackground={false}
animationType="smooth" animationType="smooth"
textboxLayout="default"
/> />
</div> </div>
@@ -148,7 +147,7 @@ export default function LandingPage() {
<ContactFaq <ContactFaq
ctaTitle="Ready to Start?" ctaTitle="Ready to Start?"
ctaDescription="Get in touch with our team today to discuss your project and discover how we can help." ctaDescription="Get in touch with our team today to discuss your project and discover how we can help."
ctaButton={{ text: "Contact Us Now", href: "/#contact" }} ctaButton={{ text: "Contact Us Now", href: "#contact" }}
ctaIcon={Phone} ctaIcon={Phone}
faqs={[ faqs={[
{ id: "1", title: "What are your office hours?", content: "Our support team is available Monday to Friday, 9 AM to 5 PM EST." }, { id: "1", title: "What are your office hours?", content: "Our support team is available Monday to Friday, 9 AM to 5 PM EST." },
@@ -165,14 +164,14 @@ export default function LandingPage() {
logoText="MyCo" logoText="MyCo"
columns={[ columns={[
{title: "Solutions", items: [ {title: "Solutions", items: [
{label: "Products", href: "/#products"}, {label: "Products", href: "#products"},
{label: "Features", href: "/#features"} {label: "Features", href: "#features"}
]}, ]},
{title: "Company", items: [ {title: "Company", items: [
{label: "About Us", href: "/#about"}, {label: "About Us", href: "#about"},
{label: "Blog", href: "/blog"}, {label: "Blog", href: "/blog"},
{label: "FAQ", href: "/#faq"}, {label: "FAQ", href: "#faq"},
{label: "Contact", href: "/#contact"} {label: "Contact", href: "#contact"}
]} ]}
]} ]}
copyrightText="© 2024 MyCo. All rights reserved." copyrightText="© 2024 MyCo. All rights reserved."