diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7eeade6..3df6216 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,18 +1,22 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Poppins } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Poppins } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const poppins = Poppins({ variable: "--font-poppins", @@ -20,6 +24,39 @@ const poppins = Poppins({ weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); +export const metadata: Metadata = { + title: "BlendJet - Portable USB-C Rechargeable Blender", + description: "Premium portable blender for smoothies, protein shakes, and healthy drinks on the go. USB-C rechargeable, self-cleaning, and crushes ice in 20 seconds.", + keywords: "portable blender, USB-C blender, personal blender, rechargeable blender, smoothie maker, travel blender", + metadataBase: new URL("https://blendjet.com"), + alternates: { + canonical: "https://blendjet.com", + }, + openGraph: { + title: "BlendJet - Portable USB-C Rechargeable Blender", + description: "Premium portable blender for smoothies, protein shakes, and healthy drinks on the go. USB-C rechargeable, self-cleaning, and crushes ice in 20 seconds.", + url: "https://blendjet.com", + siteName: "BlendJet", + type: "website", + images: [ + { + url: "https://blendjet.com/og-image.jpg", + alt: "BlendJet Portable Blender", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "BlendJet - Portable USB-C Rechargeable Blender", + description: "Premium portable blender for smoothies, protein shakes, and healthy drinks on the go.", + images: ["https://blendjet.com/twitter-image.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -28,7 +65,9 @@ export default function RootLayout({ return ( - + {children}