Update src/app/page.tsx
This commit is contained in:
@@ -10,12 +10,13 @@ import FaqDouble from '@/components/sections/faq/FaqDouble';
|
|||||||
import ContactFaq from '@/components/sections/contact/ContactFaq';
|
import ContactFaq from '@/components/sections/contact/ContactFaq';
|
||||||
import { Handshake, HeartHandshake, MessageSquareText, Sparkles } from "lucide-react";
|
import { Handshake, HeartHandshake, MessageSquareText, Sparkles } from "lucide-react";
|
||||||
|
|
||||||
const navItemsForHomePage = [
|
const standardNavItems = [
|
||||||
|
{ name: "Home", id: "/" },
|
||||||
{ name: "Products", id: "/products" },
|
{ name: "Products", id: "/products" },
|
||||||
{ name: "About", id: "about" },
|
{ name: "About", id: "/#about" },
|
||||||
{ name: "Testimonials", id: "testimonials" },
|
{ name: "Testimonials", id: "/#testimonials" },
|
||||||
{ name: "FAQs", id: "faqs" },
|
{ name: "FAQs", id: "/#faqs" },
|
||||||
{ name: "Contact", id: "contact" },
|
{ name: "Contact", id: "/#contact" }
|
||||||
];
|
];
|
||||||
|
|
||||||
export default function SitePage() {
|
export default function SitePage() {
|
||||||
@@ -35,7 +36,7 @@ export default function SitePage() {
|
|||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarLayoutFloatingInline
|
<NavbarLayoutFloatingInline
|
||||||
brandName="Nano Mango"
|
brandName="Nano Mango"
|
||||||
navItems={navItemsForHomePage}
|
navItems={standardNavItems}
|
||||||
button={{ text: "Shop Now", href: "/shop" }}
|
button={{ text: "Shop Now", href: "/shop" }}
|
||||||
buttonClassName="shadow-lg"
|
buttonClassName="shadow-lg"
|
||||||
navItemClassName="text-foreground/80 hover:text-foreground"
|
navItemClassName="text-foreground/80 hover:text-foreground"
|
||||||
@@ -55,7 +56,7 @@ export default function SitePage() {
|
|||||||
enableKpiAnimation={true}
|
enableKpiAnimation={true}
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Explore Collection", href: "/products" },
|
{ text: "Explore Collection", href: "/products" },
|
||||||
{ text: "Our Story", href: "#about" },
|
{ text: "Our Story", href: "/#about" },
|
||||||
]}
|
]}
|
||||||
videoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_34my1kGeblbsCcwUUCcjBY9WFkg/uploaded-1770649506170-pxkn8ubj.mp4"
|
videoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_34my1kGeblbsCcwUUCcjBY9WFkg/uploaded-1770649506170-pxkn8ubj.mp4"
|
||||||
imageAlt="Assortment of stylish cups and mugs from Nano Mango"
|
imageAlt="Assortment of stylish cups and mugs from Nano Mango"
|
||||||
|
|||||||
Reference in New Issue
Block a user