12 Commits

Author SHA1 Message Date
dc40d06eaf Update src/app/styles/variables.css 2026-02-24 12:32:10 +00:00
17720354d0 Update src/app/shop/page.tsx 2026-02-24 12:32:10 +00:00
b0e010f1b6 Update src/app/shop/[id]/page.tsx 2026-02-24 12:32:09 +00:00
e20c964ec9 Update src/app/page.tsx 2026-02-24 12:32:08 +00:00
c125065886 Update src/app/layout.tsx 2026-02-24 12:32:07 +00:00
01c55509d7 Update src/app/blog/page.tsx 2026-02-24 12:32:06 +00:00
6b02aa6bc1 Merge version_7 into main
Merge version_7 into main
2026-02-24 11:57:07 +00:00
0443aa41c6 Update src/app/shop/page.tsx 2026-02-24 11:57:03 +00:00
3768276359 Update src/app/shop/[id]/page.tsx 2026-02-24 11:57:02 +00:00
52f8ae3813 Update src/app/page.tsx 2026-02-24 11:57:01 +00:00
3d6785f573 Update src/app/blog/page.tsx 2026-02-24 11:56:59 +00:00
51aebaa699 Merge version_6 into main
Merge version_6 into main
2026-02-24 11:53:14 +00:00
5 changed files with 31 additions and 53 deletions

View File

@@ -1,45 +1,24 @@
import type { Metadata } from "next";
import { Roboto } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import "./styles/variables.css";
import "./styles/base.css";
const roboto = Roboto({
variable: "--font-roboto", subsets: ["latin"],
weight: ["100", "300", "400", "500", "700", "900"],
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Brew & Co - Premium Specialty Coffee & Community", description: "Discover exceptional single-origin coffee, expert baristas, and a welcoming community space. Visit Brew & Co for the perfect cup.", keywords: "specialty coffee, espresso, cafe, barista, premium coffee, coffee shop, single origin", openGraph: {
title: "Brew & Co - Premium Specialty Coffee", description: "Experience exceptional coffee and community connection", siteName: "Brew & Co", type: "website", images: [
{
url: "https://img.b2bpic.net/free-photo/caffeine-romantic-milk-wood-aroma_1232-4541.jpg", alt: "Brew & Co Premium Coffee"
}
]
},
twitter: {
card: "summary_large_image", title: "Brew & Co - Premium Specialty Coffee", description: "Exceptional coffee crafted by passionate baristas", images: ["https://img.b2bpic.net/free-photo/cooking-coffee-with-automatic-coffeemachine_1220-5264.jpg"]
},
robots: {
index: true,
follow: true
}
};
title: "Brew & Co - Premium Specialty Coffee", description: "Experience premium specialty coffee in an inviting space designed for authentic connections and exceptional taste."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={roboto.variable}
>
<Tag />
{children}
<html lang="en">
<body className={inter.variable}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1407,7 +1386,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -1,4 +1,4 @@
"use client"
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
@@ -45,7 +45,7 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroBillboardGallery
title="Yo Yo"
title="dskfjsdlkjf"
description="Experience premium specialty coffee in an inviting space designed for authentic connections and exceptional taste."
tag="Welcome to Brew & Co"
tagIcon={Coffee}

View File

@@ -98,7 +98,7 @@ function ProductPageContent({ params }: ProductPageProps) {
{"name":"Testimonials","id":"testimonials"},
{"name":"Contact","id":"contact"}
]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
button={{ text: "Reserve Now", href: "#contact" }}
/>
</div>
<main className="min-h-screen flex items-center justify-center pt-20">
@@ -145,7 +145,7 @@ function ProductPageContent({ params }: ProductPageProps) {
{"name":"Testimonials","id":"testimonials"},
{"name":"Contact","id":"contact"}
]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
button={{ text: "Reserve Now", href: "#contact" }}
/>
</div>
<main className="min-h-screen flex items-center justify-center pt-20">
@@ -199,7 +199,7 @@ function ProductPageContent({ params }: ProductPageProps) {
{"name":"Testimonials","id":"testimonials"},
{"name":"Contact","id":"contact"}
]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
button={{ text: "Reserve Now", href: "#contact" }}
/>
</div>
<div id="productDetailCard" data-section="productDetailCard">

View File

@@ -43,7 +43,7 @@ function ShopPageContent() {
{"name":"Testimonials","id":"testimonials"},
{"name":"Contact","id":"contact"}
]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
button={{ text: "Reserve Now", href: "#contact" }}
/>
</div>
<main className="min-h-screen flex items-center justify-center pt-20">
@@ -89,7 +89,7 @@ function ShopPageContent() {
{"name":"Testimonials","id":"testimonials"},
{"name":"Contact","id":"contact"}
]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
button={{ text: "Reserve Now", href: "#contact" }}
/>
</div>
<div id="productCatalog" data-section="productCatalog">

View File

@@ -2,23 +2,23 @@
/* Base units */
/* --vw is set by ThemeProvider */
/* --background: #e8d4c4;;
--card: #f5e6d9;;
--foreground: #3d2817;;
--primary-cta: #8b4513;;
--secondary-cta: #f5e6d9;;
--accent: #d4a373;;
--background-accent: #b8925f;; */
/* --background: #f5faff;;
--card: #f1f8ff;;
--foreground: #001122;;
--primary-cta: #159c49;;
--secondary-cta: #ffffff;;
--accent: #a8e8ba;;
--background-accent: #6bbf8e;; */
--background: #e8d4c4;;
--card: #f5e6d9;;
--foreground: #3d2817;;
--primary-cta: #8b4513;;
--background: #f5faff;;
--card: #f1f8ff;;
--foreground: #001122;;
--primary-cta: #159c49;;
--primary-cta-text: #ffffff;;
--secondary-cta: #f5e6d9;;
--secondary-cta: #ffffff;;
--secondary-cta-text: #3d2817;;
--accent: #d4a373;;
--background-accent: #b8925f;;
--accent: #a8e8ba;;
--background-accent: #6bbf8e;;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);