From bcb5acf81ee0ca5159793a0418aa4236fb024f2f Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 06:53:02 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1439 +------------------------------------------- 1 file changed, 12 insertions(+), 1427 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 78755b5..5268bc9 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1441 +1,27 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Poppins } 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 poppins = Poppins({ - variable: "--font-poppins", - 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: "The Wellness Formula - Evidence-Based Wellness Made Simple", - description: "Research-backed gut health guides, supplement reviews, and wellness routines. Honest, science-based wellness advice for health-conscious adults.", - keywords: "gut health, supplements, wellness, probiotics, evidence-based health, nutrition, digestive health", - metadataBase: new URL("https://thewellnessformula.com"), - alternates: { - canonical: "https://thewellnessformula.com", - }, - openGraph: { - title: "The Wellness Formula", - description: "Evidence-Based Wellness Made Simple - Research-backed guides and honest supplement reviews", - url: "https://thewellnessformula.com", - siteName: "The Wellness Formula", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-vector/hand-drawn-international-yoga-day-poses-set_23-2149414125.jpg", - alt: "The Wellness Formula - Wellness Blog", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "The Wellness Formula", - description: "Evidence-Based Wellness Made Simple", - images: ["http://img.b2bpic.net/free-vector/hand-drawn-international-yoga-day-poses-set_23-2149414125.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "The Wellness Formula", description: "Evidence-Based Wellness, Made Simple"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -