Update src/app/page.tsx
This commit is contained in:
@@ -32,14 +32,12 @@ export default function LandingPage() {
|
||||
brandName="MyCo"
|
||||
navItems={[
|
||||
{name: "Home", id: "/"},
|
||||
{name: "About", id: "#about"},
|
||||
{name: "Features", id: "#features"},
|
||||
{name: "Products", id: "#products"},
|
||||
{name: "Testimonials", id: "#testimonials"},
|
||||
{name: "FAQ", id: "#faq"},
|
||||
{name: "Contact", id: "#contact"},
|
||||
{name: "Blog", id: "/blog"},
|
||||
{name: "Shop", id: "/shop"}
|
||||
{name: "About", id: "about"},
|
||||
{name: "Features", id: "features"},
|
||||
{name: "Products", id: "products"},
|
||||
{name: "Testimonials", id: "testimonials"},
|
||||
{name: "FAQ", id: "faq"},
|
||||
{name: "Contact", id: "contact"}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -49,8 +47,8 @@ export default function LandingPage() {
|
||||
logoText="MyCo"
|
||||
description="Innovative solutions for a brighter future."
|
||||
buttons={[
|
||||
{ text: "Get Started", href: "/#contact" },
|
||||
{ text: "Learn More", href: "/#about" }
|
||||
{ text: "Get Started", href: "#contact" },
|
||||
{ text: "Learn More", href: "#about" }
|
||||
]}
|
||||
imageSrc="https://via.placeholder.com/1920x1080.png?text=Modern+Business"
|
||||
imageAlt="Modern business cityscape"
|
||||
@@ -141,6 +139,7 @@ export default function LandingPage() {
|
||||
faqsAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
animationType="smooth"
|
||||
textboxLayout="default"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -148,7 +147,7 @@ export default function LandingPage() {
|
||||
<ContactFaq
|
||||
ctaTitle="Ready to Start?"
|
||||
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}
|
||||
faqs={[
|
||||
{ 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"
|
||||
columns={[
|
||||
{title: "Solutions", items: [
|
||||
{label: "Products", href: "/#products"},
|
||||
{label: "Features", href: "/#features"}
|
||||
{label: "Products", href: "#products"},
|
||||
{label: "Features", href: "#features"}
|
||||
]},
|
||||
{title: "Company", items: [
|
||||
{label: "About Us", href: "/#about"},
|
||||
{label: "About Us", href: "#about"},
|
||||
{label: "Blog", href: "/blog"},
|
||||
{label: "FAQ", href: "/#faq"},
|
||||
{label: "Contact", href: "/#contact"}
|
||||
{label: "FAQ", href: "#faq"},
|
||||
{label: "Contact", href: "#contact"}
|
||||
]}
|
||||
]}
|
||||
copyrightText="© 2024 MyCo. All rights reserved."
|
||||
|
||||
Reference in New Issue
Block a user