9 Commits

Author SHA1 Message Date
100f7b6ac3 Update theme fonts 2026-03-09 15:22:31 +00:00
7b5fd1e5c7 Update theme fonts 2026-03-09 15:22:30 +00:00
88309cd736 Update theme fonts 2026-03-09 15:21:41 +00:00
0d42112c1d Update theme fonts 2026-03-09 15:21:41 +00:00
3987fd0133 Update src/app/styles/variables.css 2026-03-09 15:19:51 +00:00
4c14ee6b99 Merge version_1 into main
Merge version_1 into main
2026-03-09 15:17:34 +00:00
d31867e7fb Merge version_1 into main
Merge version_1 into main
2026-03-09 15:15:07 +00:00
30ba9591f1 Merge version_1 into main
Merge version_1 into main
2026-03-09 15:14:16 +00:00
1991a7ebf2 Merge version_1 into main
Merge version_1 into main
2026-03-09 15:13:05 +00:00
3 changed files with 18 additions and 22 deletions

View File

@@ -6,19 +6,11 @@ import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Libre_Baskerville } from "next/font/google";
import { Figtree } from "next/font/google";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const nunitoSans = Nunito_Sans({
variable: "--font-nunito-sans", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Brew Haven | Premium Specialty Coffee Shop", description: "Discover exceptional specialty coffee handcrafted by passionate baristas. Ethically sourced, expertly roasted, and served with care.", keywords: "coffee shop, specialty coffee, espresso, cold brew, artisan coffee, barista, sustainable coffee", robots: {
@@ -27,6 +19,12 @@ export const metadata: Metadata = {
},
};
const figtree = Figtree({
variable: "--font-figtree",
subsets: ["latin"],
});
export default function RootLayout({
children,
}: Readonly<{
@@ -35,9 +33,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${nunitoSans.variable} antialiased`}
>
<body className={`${figtree.variable} antialiased`}>
<Tag />
{children}
<script

View File

@@ -11,7 +11,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-nunito-sans), sans-serif;
font-family: var(--font-figtree), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-nunito-sans), sans-serif;
font-family: var(--font-figtree), sans-serif;
}

View File

@@ -10,15 +10,15 @@
--accent: #ffffff;
--background-accent: #ffffff; */
--background: #ffffff;
--card: #f9f9f9;
--foreground: #120a00e6;
--primary-cta: #FF7B05;
--background: #000000;
--card: #0c0c0c;
--foreground: #ffffff;
--primary-cta: #10b981;
--primary-cta-text: #ffffff;
--secondary-cta: #f9f9f9;
--secondary-cta: #000000;
--secondary-cta-text: #120a00e6;
--accent: #e2e2e2;
--background-accent: #FF7B05;
--accent: #10b981;
--background-accent: #10b981;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);