diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5cc04b6..a921e86 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,21 @@ + import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Mulish } 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 inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const mulish = Mulish({ - variable: "--font-mulish", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "London Nutrition | Health Shakes & Energy Teas in London, Ohio", description: "Locally crafted protein shakes, energizing teas, and nutrition supplements for active lifestyles. Visit London Nutrition at 112 S Main St, London, OH.", keywords: "nutrition shake, protein shake, energy tea, recovery drink, wellness, London Ohio, fitness bar, healthy drinks, supplements", metadataBase: new URL("https://londonntrition.local"), - alternates: { - canonical: "https://londonntrition.local"}, - openGraph: { - title: "London Nutrition | Health Shakes & Energy Teas", description: "Fuel your body with locally crafted protein shakes, energizing teas, and premium nutrition supplements designed for active lifestyles.", url: "https://londonntrition.local", siteName: "London Nutrition", images: [ - { - url: "http://img.b2bpic.net/free-photo/young-happy-athletic-woman-having-fruit-smoothie-breakfast-kitchen_637285-6196.jpg", alt: "Fresh nutrition shake at London Nutrition bar"}, - ], - type: "website"}, - twitter: { - card: "summary_large_image", title: "London Nutrition | Health Shakes & Energy Teas", description: "Fuel your body with locally crafted protein shakes, energizing teas, and premium nutrition supplements.", images: ["http://img.b2bpic.net/free-photo/young-happy-athletic-woman-having-fruit-smoothie-breakfast-kitchen_637285-6196.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "London Nutrition - Premium Health Shakes & Energy Teas", description: "Fuel Your Body with Healthy Shakes & Energy Teas. Locally crafted protein shakes, energizing teas, and nutrition supplements designed for active lifestyles."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}