diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 32671a1..eb50dc4 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,61 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Open_Sans } 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 { Open_Sans } 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 openSans = Open_Sans({ variable: "--font-open-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Flavor Food - Premium B2B Food Ingredients Supplier Dubai", + description: "Premium raw materials supplier for food manufacturers. Juice concentrates, dairy, flour, canned goods, oils. ISO certified. Reliable Dubai-based B2B partner.", + keywords: "food ingredients supplier, juice concentrates, dairy raw materials, flour supplier, Dubai, UAE, B2B, food manufacturer", + metadataBase: new URL("https://flavorfoood.ae"), + alternates: { + canonical: "https://flavorfoood.ae", + }, + openGraph: { + title: "Flavor Food - Your Trusted B2B Ingredients Partner", + description: "Premium raw materials for juice, dairy, pasta, and canned goods manufacturers across the GCC.", + url: "https://flavorfoood.ae", + siteName: "Flavor Food", + type: "website", + images: [ + { + url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=0v8b24", + alt: "Premium food ingredients supplier", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Flavor Food - Premium B2B Food Ingredients", + description: "ISO certified supplier of juice, dairy, flour, canned goods, and oils.", + images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=0v8b24"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +64,9 @@ export default function RootLayout({ return ( - + {children}