9 Commits

Author SHA1 Message Date
f2fc387c28 Update src/app/styles/variables.css 2026-03-04 13:32:41 +00:00
36918ed9ae Merge version_5 into main
Merge version_5 into main
2026-03-04 13:04:50 +00:00
4c55c03794 Update src/app/styles/variables.css 2026-03-04 13:04:46 +00:00
b3cb0b2cb7 Merge version_4 into main
Merge version_4 into main
2026-03-04 12:10:18 +00:00
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
3 changed files with 8 additions and 19 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 = {
@@ -46,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;
}