From 837ffb2fbd0432720a0618aba3f0b71d01962d4b Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 14:35:59 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 49 ++++++++++++---------------------------------- 1 file changed, 12 insertions(+), 37 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 73baafb..aa39f42 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,52 +1,28 @@ 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 { Geist, Geist_Mono } 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 geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const interTight = Inter_Tight({ - variable: "--font-inter-tight", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Fine Dining Chef | Culinary Excellence & Catering Services", description: "Experience exceptional fine dining with our award-winning chef. Specializing in private chef services, bespoke catering, and innovative cuisine.", keywords: "chef, private chef services, catering, fine dining, culinary excellence, event catering", openGraph: { - title: "Fine Dining Chef | Culinary Excellence", description: "Experience exceptional fine dining and bespoke catering services.", siteName: "Chef", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/chef-preparing-delicious-fish-close-up_23-2148516906.jpg", alt: "Fine dining chef"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Fine Dining Chef | Culinary Excellence", description: "Experience exceptional fine dining and bespoke catering.", images: [ - "http://img.b2bpic.net/free-photo/chef-preparing-delicious-fish-close-up_23-2148516906.jpg"], - }, -}; + title: "Chef Portfolio", description: "Professional culinary services and fine dining experiences"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +