19 Commits

Author SHA1 Message Date
ed4200c564 Merge version_6 into main
Merge version_6 into main
2026-03-02 10:25:11 +00:00
1d7e0e7fe4 Update src/app/page.tsx 2026-03-02 10:25:07 +00:00
338bff5a0b Merge version_6 into main
Merge version_6 into main
2026-03-02 10:23:18 +00:00
5dca1fa1f9 Update theme colors 2026-03-02 10:23:11 +00:00
d9f37f7291 Merge version_6 into main
Merge version_6 into main
2026-03-02 10:20:03 +00:00
e896b9e3a3 Update src/app/page.tsx 2026-03-02 10:19:58 +00:00
112ded484f Update src/app/layout.tsx 2026-03-02 10:19:57 +00:00
61556f6a7b Update src/app/bagels/page.tsx 2026-03-02 10:19:56 +00:00
529ad05bbc Merge version_5 into main
Merge version_5 into main
2026-03-02 10:17:45 +00:00
4f952292e2 Update src/app/styles/variables.css 2026-03-02 10:17:40 +00:00
4174384e86 Update src/app/page.tsx 2026-03-02 10:17:39 +00:00
372190f49b Update src/app/layout.tsx 2026-03-02 10:17:38 +00:00
9fddaa981e Update src/app/bagels/page.tsx 2026-03-02 10:17:37 +00:00
23432529c9 Merge version_4 into main
Merge version_4 into main
2026-03-02 10:08:25 +00:00
0edd5d12d5 Update src/app/page.tsx 2026-03-02 10:08:20 +00:00
1dacb1fad8 Merge version_4 into main
Merge version_4 into main
2026-03-02 10:01:14 +00:00
01a5ca0c4a Update src/app/bagels/page.tsx 2026-03-02 10:01:10 +00:00
2790f02604 Merge version_3 into main
Merge version_3 into main
2026-03-02 09:57:15 +00:00
be1ebce411 Merge version_3 into main
Merge version_3 into main
2026-03-02 09:56:30 +00:00
4 changed files with 32 additions and 55 deletions

View File

@@ -1,4 +1,4 @@
"use client" "use client";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
@@ -47,7 +47,7 @@ export default function BagelsPage() {
products={[ products={[
{ {
id: "1", brand: "Artisan Coffee Co.", name: "Salmon Bagel", price: "$8.99", rating: 5, id: "1", brand: "Artisan Coffee Co.", name: "Salmon Bagel", price: "$8.99", rating: 5,
reviewCount: "342", imageSrc: "http://img.b2bpic.net/free-photo/sandwich-with-salmon-eggs-lemon_1441-1502.jpg", imageAlt: "Fresh salmon bagel with cream cheese" reviewCount: "342", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AN51bjLT2H1DJy7cFepO8qMgO7/uploaded-1772445675642-eu470ff5.jpg", imageAlt: "Fresh salmon bagel with cream cheese"
}, },
{ {
id: "2", brand: "Artisan Coffee Co.", name: "California Bagel", price: "$9.49", rating: 5, id: "2", brand: "Artisan Coffee Co.", name: "California Bagel", price: "$9.49", rating: 5,

View File

@@ -1,45 +1,23 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Montserrat } from "next/font/google"; import { Inter } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper"; import "./styles/variables.css";
import Tag from "@/tag/Tag"; import "./styles/base.css";
const montserrat = Montserrat({ const inter = Inter({ subsets: ["latin"] });
variable: "--font-montserrat", subsets: ["latin"],
});
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Artisan Coffee Co. | Premium Coffee in San Francisco", description: "Discover freshly roasted, expertly crafted coffee in the heart of San Francisco. Visit our cafe for premium espresso, single-origin pour overs, and exceptional service.", keywords: ["coffee shop", "San Francisco", "artisan coffee", "specialty coffee", "espresso", "cafe", "premium roasted beans"], title: "Artisan Coffee Co.", description: "Premium artisan coffee, freshly roasted and expertly prepared"
robots: {
index: true,
follow: true
},
openGraph: {
title: "Artisan Coffee Co. | Premium Coffee in San Francisco", description: "Discover freshly roasted, expertly crafted coffee in the heart of San Francisco.", type: "website", siteName: "Artisan Coffee Co.", images: [
{
url: "http://img.b2bpic.net/free-photo/rustic-chandelier-made-bulbs-ropes-dining-table-vintage-kitchen_181624-9173.jpg", alt: "Artisan Coffee Co. - San Francisco"
}
]
},
twitter: {
card: "summary_large_image", title: "Artisan Coffee Co. | Premium Coffee in San Francisco", description: "Discover freshly roasted, expertly crafted coffee in the heart of San Francisco.", images: ["http://img.b2bpic.net/free-photo/rustic-chandelier-made-bulbs-ropes-dining-table-vintage-kitchen_181624-9173.jpg"]
}
}; };
export default function RootLayout({ export default function RootLayout({
children, children,
}: Readonly<{ }: {
children: React.ReactNode; children: React.ReactNode;
}>) { }) {
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en">
<ServiceWrapper> <body className={inter.className}>{children}
<body
className={`${montserrat.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1407,7 +1385,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -1,4 +1,4 @@
"use client" "use client";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import HeroSplit from '@/components/sections/hero/HeroSplit'; import HeroSplit from '@/components/sections/hero/HeroSplit';
@@ -43,13 +43,13 @@ export default function LandingPage() {
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroSplit <HeroSplit
title="Freshly Roasted Coffee" title="i"
description="Welcome to Artisan Coffee Co., where we believe in the perfect cup. Every bean is carefully selected, roasted to perfection, and prepared with passion by our experienced baristas." description="Welcome to Artisan Coffee Co., where we believe in the perfect cup. Every bean is carefully selected, roasted to perfection, and prepared with passion by our experienced baristas."
tag="Premium Artisan Coffee" tag="Premium Artisan Coffee"
tagIcon={Coffee} tagIcon={Coffee}
tagAnimation="slide-up" tagAnimation="slide-up"
background={{ variant: "glowing-orb" }} background={{ variant: "glowing-orb" }}
imageSrc="http://img.b2bpic.net/free-photo/rustic-chandelier-made-bulbs-ropes-dining-table-vintage-kitchen_181624-9173.jpg?_wi=1" videoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AN51bjLT2H1DJy7cFepO8qMgO7/uploaded-1772446040564-b62odt8g.mp4"
imageAlt="Warm, inviting coffee shop interior with specialty coffee equipment" imageAlt="Warm, inviting coffee shop interior with specialty coffee equipment"
imagePosition="right" imagePosition="right"
mediaAnimation="slide-up" mediaAnimation="slide-up"

View File

@@ -2,23 +2,23 @@
/* Base units */ /* Base units */
/* --vw is set by ThemeProvider */ /* --vw is set by ThemeProvider */
/* --background: #f7f6f7;; /* --background: #000000;;;
--card: #ffffff;; --card: #1a1a1a;;;
--foreground: #25190c;; --foreground: #ffffff;;;
--primary-cta: #ff6207;; --primary-cta: #ff6207;;;
--secondary-cta: #ffffff;; --secondary-cta: #1a1a1a;;;
--accent: #ffce93;; --accent: #ff6207;;;
--background-accent: #e8cfa8;; */ --background-accent: #ff6207;;; */
--background: #f7f6f7;; --background: #000000;;;
--card: #ffffff;; --card: #1a1a1a;;;
--foreground: #25190c;; --foreground: #ffffff;;;
--primary-cta: #ff6207;; --primary-cta: #ff6207;;;
--primary-cta-text: #f7f6f7;; --primary-cta-text: #f7f6f7;;;
--secondary-cta: #ffffff;; --secondary-cta: #1a1a1a;;;
--secondary-cta-text: #25190c;; --secondary-cta-text: #ffffff;;;
--accent: #ffce93;; --accent: #ff6207;;;
--background-accent: #e8cfa8;; --background-accent: #ff6207;;;
/* text sizing - set by ThemeProvider */ /* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);