Add src/app/experience/page.tsx

This commit is contained in:
2026-06-12 08:26:02 +00:00
parent fb646e873f
commit 62704ce104

View File

@@ -0,0 +1,88 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
export default function ExperiencePage() {
const globalNavItems = [
{ name: "Home", id: "/" },
{ name: "Menu", id: "/menu" },
{ name: "Experience", id: "/experience" },
{ name: "Journey", id: "/coffee-journey" },
{ name: "Reviews", id: "/reviews" },
{ name: "Gallery", id: "/gallery" }
];
const globalFooterColumns = [
{
title: "Explore", items: [
{ label: "Home", href: "/" },
{ label: "Menu", href: "/menu" },
{ label: "Experience", href: "/experience" },
{ label: "Coffee Journey", href: "/coffee-journey" }
]
},
{
title: "Connect", items: [
{ label: "Reviews", href: "/reviews" },
{ label: "Gallery", href: "/gallery" },
{ label: "Reserve", href: "/contact" },
{ label: "WhatsApp", href: "https://wa.me/916303572811" }
]
},
{
title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" }
]
}
];
return (
<ThemeProvider
defaultButtonVariant="hover-bubble"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
contentWidth="small"
sizing="largeSmallSizeLargeTitles"
background="fluid"
cardStyle="glass-depth"
primaryButtonStyle="diagonal-gradient"
secondaryButtonStyle="radial-glow"
headingFontWeight="bold"
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={globalNavItems}
logoSrc="http://img.b2bpic.net/free-vector/coffee-pastry-shop-logo-vector-set_53876-61331.jpg"
logoAlt="Coffeecup & Bakehouse Logo"
brandName="Coffeecup & Bakehouse"
button={{
text: "Reserve a Table", href: "/contact"
}}
/>
</div>
<div id="experience" data-section="experience">
<TextSplitAbout
useInvertedBackground={true}
title="Crafting Unforgettable Moments"
description={[
"Immerse yourself in the warm, inviting ambiance of Coffeecup. Every corner is designed for comfort, connection, and culinary delight. From the soft lighting to the cozy seating, weve created a perfect escape for you to savor our artisan coffees and delectable treats.", "Our philosophy is simple: create a space where every visit feels like a cherished memory in the making. Whether its a quiet morning read, a lively afternoon with friends, or a romantic evening, Coffeecup is your perfect backdrop."
]}
showBorder={true}
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseReveal
logoText="Coffeecup & Bakehouse"
columns={globalFooterColumns}
copyrightText="© 2024 Coffeecup & Bakehouse. All rights reserved."
/>
</div>
</ThemeProvider>
);
}