From 5ec48060bce7c1d260a01949d85367edf7e09000 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 22:51:33 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 47 ++++++---------------------------------------- 1 file changed, 6 insertions(+), 41 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1d5ad98..b63db16 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,20 @@ import type { Metadata } from "next"; -import { DM_Sans } from "next/font/google"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], -}); - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Real-Time AI Translation for Esports | Compete Globally", description: "Zero-lag AI translation for esports teams. Coordinate across languages in competitive play. Support for 52+ languages with gaming-specific terminology. Start free today.", keywords: "esports translation, real-time translation, gaming, team communication, international esports, AI translation", openGraph: { - title: "Translate Faster Than Your Enemy Can React | RealtimeAI", description: "Real-time AI translation eliminates language barriers for esports teams. Compete globally with zero communication delay.", siteName: "RealtimeAI", type: "website", url: "https://realtime-ai.example.com", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASCfzCq5OG8cCIjLCi3fkTClIV/professional-esports-team-in-a-high-tech-1772576761007-c633a36e.png", alt: "RealtimeAI - Real-Time Translation for Esports"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Real-Time AI Translation for Esports Teams", description: "Compete globally without language barriers. Sub-50ms translation for gaming terminology.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASCfzCq5OG8cCIjLCi3fkTClIV/professional-esports-team-in-a-high-tech-1772576761007-c633a36e.png"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "RealtimeAI - Real-Time Translation for Esports", description: "Translate faster than your enemy can react. Real-time AI translation for esports teams."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}