diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e54651e..68a1b55 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { DM_Sans } 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 dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Red Bull - Energy Drink | Gives You Wings", description: "Experience Red Bull energy drink. Trusted by athletes and adventurers worldwide. Discover our range of flavors and unleash your potential.", keywords: "Red Bull, energy drink, caffeine, beverages, sports drink, taurine", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Red Bull - Gives You Wings", description: "Experience the legendary energy drink that powers athletes worldwide", type: "website", siteName: "Red Bull", images: [ - { - url: "http://img.b2bpic.net/free-photo/front-view-energy-drink-cans-red-drink-alcohol-darkness_140725-92768.jpg", alt: "red bull energy drink can beverage"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Red Bull - Gives You Wings", description: "Experience the legendary energy drink that powers athletes worldwide", images: ["http://img.b2bpic.net/free-photo/front-view-energy-drink-cans-red-drink-alcohol-darkness_140725-92768.jpg"], - }, -}; + title: "Red Bull - Gives You Wings", description: "Experience the legendary energy drink that powers athletes, adventurers, and dreamers worldwide."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}