From ed2978234c3e481b8583b8e36cda190c1fddf689 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 08:34:25 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 51 ++++++++-------------------------------------- 1 file changed, 9 insertions(+), 42 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1fb8231..b4363ab 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,55 +1,23 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Inter_Tight } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import { Poppins } from "next/font/google"; +import "@/styles/globals.css"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const interTight = Inter_Tight({ - variable: "--font-inter-tight", subsets: ["latin"], +const poppins = Poppins({ + subsets: ["latin"], weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { - title: "Artisan Bakery - Fresh Handcrafted Baked Goods", description: "Discover freshly baked pastries, breads, and artisan goods. Family-owned bakery with 25+ years of excellence. Order online today.", keywords: "bakery, pastries, croissants, sourdough, fresh bread, artisan baking, handcrafted, pastry shop", openGraph: { - title: "Artisan Bakery - Premium Handcrafted Baked Goods", description: "Experience the warmth of handcrafted pastries and artisan breads made with the finest ingredients.", type: "website", siteName: "Artisan Bakery", images: [ - { - url: "http://img.b2bpic.net/free-photo/side-view-croissant-glass-jar-jam-with-leaves-cutting-board-wooden-background_141793-130310.jpg", alt: "fresh bakery display pastries bread"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Artisan Bakery - Fresh Baked Daily", description: "Handcrafted pastries and breads made with love and organic ingredients.", images: ["http://img.b2bpic.net/free-photo/side-view-croissant-glass-jar-jam-with-leaves-cutting-board-wooden-background_141793-130310.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Artisan Bakery - Fresh Baked Goodness", description: "Experience the warmth of handcrafted pastries and artisan breads made with the finest ingredients"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}