Update src/app/layout.tsx
This commit is contained in:
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${openSans.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +78,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user