3 Commits

Author SHA1 Message Date
79bd1cabcc Update src/app/page.tsx 2026-03-19 10:38:57 +00:00
a3831ff800 Update src/app/page.tsx 2026-03-19 10:38:31 +00:00
646c23df39 Merge version_1 into main
Merge version_1 into main
2026-03-19 10:35:41 +00:00

View File

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