From 2d775e00cf1d67094cff7a4dac9cae224a3a71b5 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 12:26:23 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 48 ++++++++++++---------------------------------- 1 file changed, 12 insertions(+), 36 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5413f12..181dd57 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,51 +1,28 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Lato } 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 lato = Lato({ - variable: "--font-lato", subsets: ["latin"], - weight: ["100", "300", "400", "700", "900"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Geze Supplement | Premium Creatine for Peak Performance", description: "Unlock your fitness potential with Geze Supplement's scientifically-formulated creatine. Premium monohydrate, third-party tested, trusted by 50K+ athletes worldwide.", keywords: "creatine, creatine monohydrate, supplements, fitness, sports nutrition, muscle strength, athletic performance", openGraph: { - title: "Geze Supplement | Premium Creatine", description: "Transform your performance with Geze Supplement's pure creatine monohydrate. Trusted by athletes globally.", type: "website", siteName: "Geze Supplement", images: [ - { - url: "http://img.b2bpic.net/free-photo/brain-booster-pills-container-still-life_23-2150760044.jpg", alt: "Geze Supplement Creatine Product"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Geze Supplement | Premium Creatine", description: "Achieve peak performance with our scientifically-backed creatine supplement.", images: ["http://img.b2bpic.net/free-photo/brain-booster-pills-container-still-life_23-2150760044.jpg"], - }, -}; + title: "Create Next App", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +