Update src/app/layout.tsx

This commit is contained in:
2026-03-17 06:45:59 +00:00
parent 5b53321ae1
commit 2585b461ec

View File

@@ -1,28 +1,54 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { DM_Sans } from "next/font/google";
import { Inter } 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 { DM_Sans } from "next/font/google";
export const metadata: Metadata = {
title: "Webild components 2",
description: "Generated by create next app",
};
const dmSans = DM_Sans({
variable: "--font-dm-sans",
subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "FundGame - Fund & Discover Innovative Games",
description: "Connect with game developers and exclusive demos. Support innovative projects and get early access to tomorrow's gaming classics on FundGame.",
keywords: "game fundraising, indie games, game distribution, demo access, gaming platform",
metadataBase: new URL("https://fundgame.com"),
alternates: {
canonical: "https://fundgame.com",
},
openGraph: {
title: "FundGame - Fund Innovative Games",
description: "Join the community funding innovative game projects and discovering exclusive demos.",
url: "https://fundgame.com",
siteName: "FundGame",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-vector/landing-page-template-startup-isometric-design_23-2148303966.jpg",
alt: "FundGame Platform",
},
],
},
twitter: {
card: "summary_large_image",
title: "FundGame - Fund & Discover Games",
description: "Support game developers and get exclusive early access to demos.",
images: ["http://img.b2bpic.net/free-vector/landing-page-template-startup-isometric-design_23-2148303966.jpg"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -31,7 +57,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${dmSans.variable} ${inter.variable} antialiased`}>
<body
className={`${dmSans.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -43,4 +71,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}