7 Commits

Author SHA1 Message Date
53c059d912 Update src/app/page.tsx 2026-03-04 12:10:11 +00:00
cda495c13f Merge version_3 into main
Merge version_3 into main
2026-03-04 12:04:48 +00:00
0972431ef8 Update src/app/styles/base.css 2026-03-04 12:04:43 +00:00
1bab987b5e Update src/app/layout.tsx 2026-03-04 12:04:41 +00:00
6f3125d7d5 Merge version_2 into main
Merge version_2 into main
2026-03-04 11:56:35 +00:00
88fcf689d4 Update src/app/styles/variables.css 2026-03-04 11:56:31 +00:00
72f2c68465 Update src/app/layout.tsx 2026-03-04 11:56:30 +00:00
4 changed files with 24 additions and 34 deletions

View File

@@ -1,23 +1,12 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Roboto } from "next/font/google";
import { Lato } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const roboto = Roboto({
variable: "--font-roboto", subsets: ["latin"],
weight: ["100", "300", "400", "500", "700", "900"],
const lato = Lato({
variable: "--font-lato", subsets: ["latin"],
weight: ["100", "300", "400", "700", "900"],
});
export const metadata: Metadata = {
@@ -28,7 +17,8 @@ export const metadata: Metadata = {
openGraph: {
title: "Sweet Crust Bakery - Premium Artisan Baking", description: "Experience 40 years of baking excellence with handcrafted pastries and fresh bread.", type: "website", siteName: "Sweet Crust Bakery", images: [
{
url: "http://img.b2bpic.net/free-photo/various-baking-supermarket-shelves-sale_627829-7384.jpg", alt: "Fresh bakery display"},
url: "http://img.b2bpic.net/free-photo/various-baking-supermarket-shelves-sale_627829-7384.jpg", alt: "Fresh bakery display"
},
],
},
twitter: {
@@ -45,7 +35,7 @@ export default function RootLayout({
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${roboto.variable} antialiased`}
className={`${lato.variable} antialiased`}
>
<Tag />
{children}

View File

@@ -40,7 +40,7 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroBillboardTestimonial
title="Freshly Baked Goodness Every Day"
title="Freshly Baked Goodness - Every Day"
description="Experience the warmth of artisanal baking. From classic loaves to delicate pastries, every product is crafted with love and the finest ingredients."
tag="Premium Bakery"
tagIcon={Sparkles}

View File

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

View File

@@ -2,23 +2,23 @@
/* Base units */
/* --vw is set by ThemeProvider */
/* --background: #f5f5f5;;
--card: #ffffff;;
--foreground: #1c1c1c;;
--primary-cta: #1f3251;;
--secondary-cta: #ffffff;;
--accent: #15479c;;
--background-accent: #a8cce8;; */
/* --background: #0a0a0a;;
--card: #1a1a1a;;
--foreground: #ffffffe6;;
--primary-cta: #e6e6e6;;
--secondary-cta: #1a1a1a;;
--accent: #737373;;
--background-accent: #737373;; */
--background: #f5f5f5;;
--card: #ffffff;;
--foreground: #1c1c1c;;
--primary-cta: #1f3251;;
--background: #0a0a0a;;
--card: #1a1a1a;;
--foreground: #ffffffe6;;
--primary-cta: #e6e6e6;;
--primary-cta-text: #f5f5f5;;
--secondary-cta: #ffffff;;
--secondary-cta: #1a1a1a;;
--secondary-cta-text: #1c1c1c;;
--accent: #15479c;;
--background-accent: #a8cce8;;
--accent: #737373;;
--background-accent: #737373;;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);