Update src/app/layout.tsx
This commit is contained in:
@@ -1,24 +1,52 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Source_Sans_3 } 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 { Source_Sans_3 } 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 sourceSans3 = Source_Sans_3({
|
||||
variable: "--font-source-sans-3",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Elite Football Club - Professional Soccer Training & Community",
|
||||
description: "Join Elite Football Club for professional football training, youth development, and community events. Featuring state-of-the-art facilities and expert coaching for all ages.",
|
||||
keywords: "football club, soccer training, youth academy, football coaching, professional sports",
|
||||
openGraph: {
|
||||
title: "Elite Football Club - Professional Soccer Training & Community",
|
||||
description: "Join Elite Football Club for professional football training, youth development, and community events. Featuring state-of-the-art facilities and expert coaching.",
|
||||
type: "website",
|
||||
siteName: "Elite Football Club",
|
||||
images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/close-up-football-field_23-2148930198.jpg",
|
||||
alt: "Elite Football Club Stadium",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Elite Football Club - Professional Soccer Training & Community",
|
||||
description: "Join Elite Football Club for professional football training, youth development, and community events.",
|
||||
images: ["http://img.b2bpic.net/free-photo/close-up-football-field_23-2148930198.jpg"],
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -27,7 +55,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${sourceSans3.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${sourceSans3.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +69,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user