Update src/app/page.tsx

This commit is contained in:
2026-03-19 10:38:31 +00:00
parent 646c23df39
commit a3831ff800

View File

@@ -1,14 +1,14 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import HeroLogoBillboardSplit from '@/components/sections/hero/HeroLogoBillboardSplit';
import SplitAbout from '@/components/sections/about/SplitAbout';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNineteen';
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
import HeroLogoBillboardSplit from "@/components/sections/hero/HeroLogoBillboardSplit";
import SplitAbout from "@/components/sections/about/SplitAbout";
import ProductCardOne from "@/components/sections/product/ProductCardOne";
import FeatureCardNineteen from "@/components/sections/feature/FeatureCardNineteen";
import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen";
import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
import { Leaf, Coffee, Home } from "lucide-react";
const assetMap: Record<string, { url: string; alt?: string }> = {
@@ -87,11 +87,11 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{ name: "Home", id: "home" },
{ name: "Menu", id: "menu" },
{ name: "About Us", id: "about" },
{ name: "Reviews", id: "reviews" },
{ name: "Contact", id: "contact" }
{ name: "Home", href: "/" },
{ name: "Menu", href: "/menu" },
{ name: "About Us", href: "/about" },
{ name: "Reviews", href: "/#reviews" },
{ name: "Contact", href: "/#contact" }
]}
button={{
text: "Order Now", href: "#contact"
@@ -208,8 +208,8 @@ export default function LandingPage() {
<FooterBaseCard
logoText="Brew Bliss"
columns={[
{ title: "Menu", items: [{ label: "Espresso", href: "#menu" }, { label: "Lattes", href: "#menu" }, { label: "Pastries", href: "#menu" }] },
{ title: "Company", items: [{ label: "Our Story", href: "#about" }, { label: "Reviews", href: "#reviews" }, { label: "Contact", href: "#contact" }] },
{ title: "Menu", items: [{ label: "Espresso", href: "/#menu" }, { label: "Lattes", href: "/#menu" }, { label: "Pastries", href: "/#menu" }] },
{ title: "Company", items: [{ label: "Our Story", href: "/#about" }, { label: "Reviews", href: "/#reviews" }, { label: "Contact", href: "/#contact" }] },
{ title: "Follow Us", items: [{ label: "Instagram", href: "https://instagram.com/brewbliss" }, { label: "Facebook", href: "https://facebook.com/brewbliss" }] }
]}
copyrightText="© 2024 Brew Bliss. All rights reserved."
@@ -217,4 +217,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}