4 Commits

Author SHA1 Message Date
9e2672834a Bob AI: [Block: hero-billboard|Hero Billboard|/blocks/hero... 2026-02-27 09:39:15 +02:00
767b7d030c Merge version_5 into main
Merge version_5 into main
2026-02-27 07:34:22 +00:00
889890b372 Bob AI: change font to Mulish + Inter 2026-02-27 09:34:10 +02:00
17dfec37fd Merge version_4 into main
Merge version_4 into main
2026-02-27 07:32:21 +00:00
3 changed files with 25 additions and 21 deletions

View File

@@ -1,17 +1,24 @@
import type { Metadata } from "next";
import { Nunito } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { Mulish } from "next/font/google";
import { Inter } from "next/font/google";
const nunito = Nunito({
variable: "--font-nunito", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Artisan Bakery | Fresh Baked Goods Delivered Daily", description: "Discover freshly baked artisan breads, pastries, and cakes made daily with love. Order online for local delivery or visit our warm, inviting bakery today.", keywords: ["artisan bakery", "fresh baked goods", "sourdough bread", "croissants", "custom cakes", "local bakery", "online bakery orders", "pastries", "cinnamon rolls", "bakery delivery"]
};
const mulish = Mulish({
variable: "--font-mulish",
subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
export default function RootLayout({
children,
}: Readonly<{
@@ -20,9 +27,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${nunito.variable} antialiased`}
>
<body className={`${mulish.variable} ${inter.variable} antialiased`}>
<Tag />
{children}

View File

@@ -2,7 +2,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import HeroBillboard from '@/components/sections/hero/HeroBillboard';
import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi';
import MediaAbout from '@/components/sections/about/MediaAbout';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia';
@@ -45,7 +45,7 @@ export default function LandingPage() {
</div>
<div id="hero-section" data-section="hero-section">
<HeroBillboard
<HeroSplitKpi
title="Artisan Bakery"
description="Handcrafted breads and pastries baked fresh daily. Experience the warmth of traditional baking techniques combined with premium, locally-sourced ingredients."
background={{ variant: "radial-gradient" }}
@@ -53,22 +53,21 @@ export default function LandingPage() {
tagIcon={Sparkles}
tagAnimation="slide-up"
buttons={[
{ text: "Shop Now", href: "#products-section", dataWebildId: "hero_shop_btn" },
{ text: "View Menu", href: "#menu-section", dataWebildId: "hero_menu_btn" }
{ label: "Shop Now", href: "#products-section", dataWebildId: "hero_split_kpi_shop_btn" },
{ label: "View Menu", href: "#menu-section", dataWebildId: "hero_split_kpi_menu_btn" }
]}
buttonAnimation="slide-up"
imageSrc="https://img.b2bpic.net/free-photo/abstract-luxury-gradient-blue-background_53876-120942.jpg"
imageAlt="artisan bakery showcase with fresh baked goods"
mediaAnimation="fade-in"
marqueeItems={[
{ text: "Sourdough", icon: Sparkles },
{ text: "Croissants", icon: Sparkles },
{ text: "Seasonal Pastries", icon: Sparkles },
{ text: "Custom Orders", icon: Sparkles }
kpiItems={[
{ value: "500+", label: "Loaves Baked Daily" },
{ value: "15+", label: "Years of Tradition" },
{ value: "100%", label: "Locally Sourced" },
{ value: "4.9★", label: "Customer Rating" }
]}
marqueeSpeed={40}
showMarqueeCard={true}
ariaLabel="Hero section for artisan bakery featuring fresh baked goods"
enableKpiAnimation={true}
ariaLabel="Hero section for artisan bakery featuring fresh baked goods and key metrics"
/>
</div>

View File

@@ -11,7 +11,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-font-family: var(--font-nunito), sans-serif;), 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-font-family: var(--font-nunito), sans-serif;), sans-serif;
font-family: var(--font-mulish), sans-serif;
}