5 Commits

Author SHA1 Message Date
ba74a89258 Update src/app/espresso-bar/page.tsx 2026-04-22 23:50:18 +00:00
f255ab70bb Update src/app/page.tsx 2026-04-22 23:49:52 +00:00
7555a764fc Add src/app/espresso-bar/page.tsx 2026-04-22 23:49:52 +00:00
7a207c3930 Merge version_1 into main
Merge version_1 into main
2026-04-22 23:45:54 +00:00
7f1935c703 Merge version_1 into main
Merge version_1 into main
2026-04-22 23:40:00 +00:00
2 changed files with 68 additions and 4 deletions

View File

@@ -0,0 +1,64 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
export default function EspressoBarPage() {
return (
<ThemeProvider
defaultButtonVariant="icon-arrow"
defaultTextAnimation="background-highlight"
borderRadius="pill"
contentWidth="mediumSmall"
sizing="mediumLargeSizeMediumTitles"
background="aurora"
cardStyle="solid"
primaryButtonStyle="diagonal-gradient"
secondaryButtonStyle="radial-glow"
headingFontWeight="extrabold"
>
<ReactLenis root>
<NavbarLayoutFloatingInline
navItems={[
{ name: "Experience", id: "/#experience" },
{ name: "Menu", id: "/espresso-bar" },
{ name: "Events", id: "/#events" },
{ name: "Visit", id: "/#location" },
]}
brandName="Ebreeq"
button={{ text: "Visit Us", href: "/#location" }}
/>
<div className="pt-32 pb-20">
<ProductCardTwo
animationType="slide-up"
textboxLayout="default"
gridVariant="four-items-2x2-equal-grid"
useInvertedBackground={true}
title="Espresso Bar"
description="Our curated collection of specialty brews and bites."
products={[
{ id: "e1", brand: "Espresso", name: "Yemeni Spiced Espresso", price: "$5.50", rating: 4.8, reviewCount: "128", imageSrc: "http://img.b2bpic.net/free-photo/delicious-sweet-rolls-coffee-beans-turkish-coffee-stone_114579-43500.jpg" },
{ id: "e2", brand: "Matcha", name: "Ceremonial Matcha Latte", price: "$6.00", rating: 4.9, reviewCount: "95", imageSrc: "http://img.b2bpic.net/free-photo/milky-cocktail-with-cream-cinnamon-powder-blue-table_114579-4258.jpg" },
{ id: "e3", brand: "Pastries", name: "Saffron Cardamom Roll", price: "$4.75", rating: 4.7, reviewCount: "64", imageSrc: "http://img.b2bpic.net/free-photo/top-view-chocolate-eclairs-oval-plate-tarts-laeves-cinnamon-dried-oranges-dark-wooden-table-with-copy-space_140725-90858.jpg" },
{ id: "e4", brand: "Refreshers", name: "Iced Hibiscus Rose", price: "$5.25", rating: 4.6, reviewCount: "82", imageSrc: "http://img.b2bpic.net/free-photo/texture-breakfast-art-caffeine-wooden_1150-1577.jpg" },
{ id: "e5", brand: "Traditional", name: "Yemeni Qishr (Spiced Tea)", price: "$4.50", rating: 4.9, reviewCount: "150", imageSrc: "http://img.b2bpic.net/free-photo/high-view-cold-coffee-with-cookies-blurred-grinder_23-2148441200.jpg" }
]}
/>
</div>
<FooterBaseCard
logoText="Ebreeq"
columns={[
{ title: "Ebreeq", items: [{ label: "About", href: "/#experience" }, { label: "Menu", href: "/espresso-bar" }, { label: "Events", href: "/#events" }] },
{ title: "Connect", items: [{ label: "Instagram", href: "#" }, { label: "Facebook", href: "#" }, { label: "Email", href: "mailto:hello@ebreeq.com" }] },
]}
copyrightText="© 2025 Ebreeq Coffee House. All rights reserved."
/>
</ReactLenis>
</ThemeProvider>
);
}

View File

@@ -32,7 +32,7 @@ export default function LandingPage() {
<NavbarLayoutFloatingInline
navItems={[
{ name: "Experience", id: "experience" },
{ name: "Menu", id: "products" },
{ name: "Menu", id: "/espresso-bar" },
{ name: "Events", id: "events" },
{ name: "Visit", id: "location" },
]}
@@ -54,7 +54,7 @@ export default function LandingPage() {
{ src: "http://img.b2bpic.net/free-photo/positive-young-woman-with-curly-hair-giggles-happily-holds-disposable-cup-coffee-enjoys-aromatic-beverage-dressed-casual-orange-jumper-isolated-white-background-drinking-concept_273609-61071.jpg", alt: "Satisfied patron" },
]}
avatarText="Cleveland's favorite hidden gem"
buttons={[{ text: "View Menu", href: "#products" }, { text: "Visit Us", href: "#location" }]}
buttons={[{ text: "View Menu", href: "/espresso-bar" }, { text: "Visit Us", href: "#location" }]}
buttonAnimation="slide-up"
marqueeItems={[
{ type: "text-icon", text: "Direct Trade Beans", icon: Coffee },
@@ -158,7 +158,7 @@ export default function LandingPage() {
<FooterBaseCard
logoText="Ebreeq"
columns={[
{ title: "Ebreeq", items: [{ label: "About", href: "#experience" }, { label: "Menu", href: "#products" }, { label: "Events", href: "#events" }] },
{ title: "Ebreeq", items: [{ label: "About", href: "#experience" }, { label: "Menu", href: "/espresso-bar" }, { label: "Events", href: "#events" }] },
{ title: "Connect", items: [{ label: "Instagram", href: "#" }, { label: "Facebook", href: "#" }, { label: "Email", href: "mailto:hello@ebreeq.com" }] },
]}
copyrightText="© 2025 Ebreeq Coffee House. All rights reserved."
@@ -167,4 +167,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}