16 Commits

Author SHA1 Message Date
2c99ddb670 Update src/app/page.tsx 2026-04-16 20:51:19 +00:00
9ef309be74 Merge version_18 into main
Merge version_18 into main
2026-04-16 20:50:31 +00:00
2bb1085176 Update src/app/page.tsx 2026-04-16 20:50:28 +00:00
ec4740baa3 Merge version_17 into main
Merge version_17 into main
2026-04-16 20:43:09 +00:00
9d28131b5e Update src/app/page.tsx 2026-04-16 20:43:03 +00:00
3046a23a28 Merge version_17 into main
Merge version_17 into main
2026-04-16 20:41:56 +00:00
5072c7f1ad Update theme fonts 2026-04-16 20:41:53 +00:00
a9e6fc4c73 Update theme fonts 2026-04-16 20:41:53 +00:00
5ec57896ca Merge version_17 into main
Merge version_17 into main
2026-04-16 20:40:50 +00:00
d8bcca4e2f Update src/app/page.tsx 2026-04-16 20:40:44 +00:00
fcd40a1828 Merge version_17 into main
Merge version_17 into main
2026-04-16 20:38:58 +00:00
254043679f Update src/app/page.tsx 2026-04-16 20:38:55 +00:00
312e15681f Merge version_16 into main
Merge version_16 into main
2026-04-12 16:23:32 +00:00
5b0dd62835 Merge version_16 into main
Merge version_16 into main
2026-04-12 16:23:13 +00:00
3f6f382f91 Merge version_16 into main
Merge version_16 into main
2026-04-12 16:21:45 +00:00
7fdfa60ae2 Merge version_16 into main
Merge version_16 into main
2026-04-12 16:21:20 +00:00
3 changed files with 14 additions and 8 deletions

View File

@@ -6,6 +6,7 @@ import "@/lib/gsap-setup";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Raleway } from "next/font/google";
import { Public_Sans } from "next/font/google";
@@ -20,8 +21,13 @@ export const metadata: Metadata = {
},
};
const raleway = Raleway({
variable: "--font-raleway",
const publicSans = Public_Sans({
variable: "--font-public-sans",
subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
@@ -33,7 +39,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${raleway.variable} antialiased`}>
<body className={`${publicSans.variable} ${inter.variable} antialiased`}>
{children}
<script

View File

@@ -37,14 +37,14 @@ export default function LandingPage() {
{ name: "Events", id: "/#events" },
{ name: "Visit", id: "/#visit" },
]}
brandName="Molisana Bakery"
brandName="Home Page"
/>
</div>
<div id="hero" data-section="hero">
<HeroSplit
background={{ variant: "gradient-bars" }}
title="Wood-Fired Comfort, Italian Classics & Espresso Done Right."
title="Authentic Italian Flavors, Crafted Daily"
description="From early-morning cappuccinos to hot table favourites and fresh pastries — Molisana Bakery is your daily Italian ritual. Simply put: There is no substitute for the Italian way of food."
buttons={[
{ text: "View Menu", href: "/menu" },
@@ -84,7 +84,7 @@ export default function LandingPage() {
{ id: "p6", name: "Focaccia Sandwich", price: "CA$14", imageSrc: "http://img.b2bpic.net/free-photo/mozzarella-sliders-summer-picnic-sandwiches_53876-103644.jpg?_wi=2" },
]}
title="Our Daily Classics"
description="Authentic recipes, generous portions, and the quality you expect from a real Italian eatery."
description="Hand-crafted daily in limited batches—order yours before they're gone."
/>
</div>

View File

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