Update src/app/page.tsx
This commit is contained in:
@@ -34,23 +34,33 @@ export default function LandingPage() {
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home", id: "#home"},
|
||||
name: "Home", id: "/"},
|
||||
{
|
||||
name: "Products", id: "#products"},
|
||||
name: "Categories", id: "/categories"},
|
||||
{
|
||||
name: "Features", id: "#features"},
|
||||
name: "Products", id: "/products"},
|
||||
{
|
||||
name: "Testimonials", id: "#testimonials"},
|
||||
name: "Features", id: "/features"},
|
||||
{
|
||||
name: "Pricing", id: "#pricing"},
|
||||
name: "Search", id: "/search"},
|
||||
{
|
||||
name: "FAQ", id: "#faq"},
|
||||
name: "Wishlist", id: "/wishlist"},
|
||||
{
|
||||
name: "Contact", id: "#contact"},
|
||||
name: "Testimonials", id: "/testimonials"},
|
||||
{
|
||||
name: "Pricing", id: "/pricing"},
|
||||
{
|
||||
name: "FAQ", id: "/faq"},
|
||||
{
|
||||
name: "Seller Dashboard", id: "/seller-dashboard"},
|
||||
{
|
||||
name: "Account", id: "/account"},
|
||||
{
|
||||
name: "Contact", id: "/contact"},
|
||||
]}
|
||||
brandName="DesignFlow"
|
||||
button={{
|
||||
text: "Get Started", href: "#products"}}
|
||||
text: "Get Started", href: "/products"}}
|
||||
animateOnLoad={true}
|
||||
/>
|
||||
</div>
|
||||
@@ -82,9 +92,9 @@ export default function LandingPage() {
|
||||
testimonialRotationInterval={5000}
|
||||
buttons={[
|
||||
{
|
||||
text: "Browse Designs", href: "#products"},
|
||||
text: "Browse Designs", href: "/products"},
|
||||
{
|
||||
text: "Become a Seller", href: "#contact"},
|
||||
text: "Become a Seller", href: "/seller-dashboard"},
|
||||
]}
|
||||
avatars={[
|
||||
{
|
||||
@@ -287,7 +297,7 @@ export default function LandingPage() {
|
||||
text="Ready to elevate your brand or showcase your designs? Our team is here to help. Get in touch with us today for support, partnerships, or any inquiries."
|
||||
buttons={[
|
||||
{
|
||||
text: "Contact Us", href: "mailto:support@designflow.com"},
|
||||
text: "Contact Us", href: "/contact"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -299,25 +309,25 @@ export default function LandingPage() {
|
||||
{
|
||||
title: "Products", items: [
|
||||
{
|
||||
label: "Canva Templates", href: "#products"},
|
||||
label: "Canva Templates", href: "/products"},
|
||||
{
|
||||
label: "Logos", href: "#products"},
|
||||
label: "Logos", href: "/products"},
|
||||
{
|
||||
label: "Social Media Kits", href: "#products"},
|
||||
label: "Social Media Kits", href: "/products"},
|
||||
{
|
||||
label: "Banners & Flyers", href: "#products"},
|
||||
label: "Banners & Flyers", href: "/products"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{
|
||||
label: "About Us", href: "#about"},
|
||||
label: "About Us", href: "/about"},
|
||||
{
|
||||
label: "Features", href: "#features"},
|
||||
label: "Features", href: "/features"},
|
||||
{
|
||||
label: "Pricing", href: "#pricing"},
|
||||
label: "Pricing", href: "/pricing"},
|
||||
{
|
||||
label: "Contact", href: "#contact"},
|
||||
label: "Contact", href: "/contact"},
|
||||
],
|
||||
},
|
||||
{
|
||||
@@ -337,4 +347,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user