Update src/app/page.tsx

This commit is contained in:
2026-02-21 14:03:19 +00:00
parent be12890af6
commit 8a12cac60f

View File

@@ -1,7 +1,7 @@
"use client"
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import HeroSplit from '@/components/sections/hero/HeroSplit';
import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard';
import MediaAbout from '@/components/sections/about/MediaAbout';
import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/FeatureBorderGlow';
import ProductCardThree from '@/components/sections/product/ProductCardThree';
@@ -12,6 +12,18 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import { Award, Coffee, Heart, Leaf, MapPin, Sparkles, TrendingUp, Users, Zap } from "lucide-react";
export default function CoffeePage() {
const commonNavItems = [
{ name: "Home", id: "/" },
{ name: "About", id: "#about" },
{ name: "Menu", id: "#products" },
{ name: "Experience", id: "#features" },
{ name: "Community", id: "#testimonials" },
{ name: "Contact", id: "#contact" },
{ name: "Blog", id: "/blog" },
{ name: "Shop", id: "/shop" }
];
const commonButton = { text: "Order Now", href: "/shop" };
return (
<ThemeProvider
defaultButtonVariant="directional-hover"
@@ -28,24 +40,15 @@ export default function CoffeePage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
brandName="Init"
navItems={[
{ name: "About", id: "about" },
{ name: "Menu", id: "products" },
{ name: "Experience", id: "features" },
{ name: "Community", id: "testimonials" },
{ name: "Contact", id: "contact" }
]}
button={{ text: "Order Now", href: "#products" }}
navItems={commonNavItems}
button={commonButton}
/>
</div>
<div id="hero" data-section="hero">
<HeroSplit
title="Craft Coffee, Crafted Moments"
<HeroLogoBillboard
logoText="Init Coffee"
description="Welcome to Init, where every cup tells a story. We source the finest beans from around the world and brew with passion to create the perfect coffee experience for our community."
tag="Premium Coffeehouse"
tagIcon={Coffee}
tagAnimation="slide-up"
buttons={[
{ text: "Explore Our Menu", href: "#products" },
{ text: "Visit Us Today", href: "#contact" }
@@ -55,7 +58,7 @@ export default function CoffeePage() {
videoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_34my1kGeblbsCcwUUCcjBY9WFkg/uploaded-1770649506170-pxkn8ubj.mp4"
imageAlt="Init Coffeehouse - Premium espresso preparation"
mediaAnimation="blur-reveal"
imagePosition="right"
frameStyle="card"
className="py-24"
/>
</div>
@@ -216,4 +219,4 @@ export default function CoffeePage() {
</div>
</ThemeProvider>
);
}
}