From 2585b461ec6e6fb271a880f08af5805297ea7d8f Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 17 Mar 2026 06:45:59 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 50 ++++++++++++++++++++++++++++++++++++---------- 1 file changed, 39 insertions(+), 11 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0f7096a..47cce5e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - + {children}