diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7c0ca3a..cbab82b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -8,21 +8,49 @@ import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; import { Libre_Baskerville } from "next/font/google"; - - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; - const libreBaskerville = Libre_Baskerville({ variable: "--font-libre-baskerville", subsets: ["latin"], weight: ["400", "700"], }); + const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); +const halant = Halant({ + variable: "--font-halant", subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); + +export const metadata: Metadata = { + title: "FrostFuel - Unleash Cold Energy", description: "Experience FrostFuel, the ultimate energy drink for gamers, athletes, and innovators. Boost your focus, reaction time, and endurance with our ice-powered blends.", keywords: ["FrostFuel", "energy drink", "gaming", "esports", "fitness", "focus", "performance", "caffeine", "arctic", "cold energy", "boost", "drink", "beverage"], + metadataBase: new URL("https://www.frostfuel.com"), + alternates: { + canonical: "/"}, + openGraph: { + title: "FrostFuel - Unleash Cold Energy", description: "Experience FrostFuel, the ultimate energy drink for gamers, athletes, and innovators. Boost your focus, reaction time, and endurance with our ice-powered blends.", url: "https://www.frostfuel.com", siteName: "FrostFuel", images: [ + { + url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BOleZuww3BxgYtY3uiCXnYj2Ul/a-futuristic-energy-drink-bottle-in-a-fr-1774368208983-ba27e493.png", width: 1200, + height: 630, + alt: "FrostFuel Energy Drink"}, + ], + locale: "en_US", type: "website"}, + twitter: { + card: "summary_large_image", title: "FrostFuel - Unleash Cold Energy", description: "Experience FrostFuel, the ultimate energy drink for gamers, athletes, and innovators. Boost your focus, reaction time, and endurance with our ice-powered blends.", creator: "@FrostFuel", images: [ + "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BOleZuww3BxgYtY3uiCXnYj2Ul/a-futuristic-energy-drink-bottle-in-a-fr-1774368208983-ba27e493.png"], + }, + robots: { + index: true, + follow: true, + googleBot: { + index: true, + follow: true, + "max-video-preview": -1, + "max-image-preview": "large", "max-snippet": -1, + }, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -31,7 +59,9 @@ export default function RootLayout({ return ( - + {children}