Merge version_2 into main #2

Merged
bender merged 2 commits from version_2 into main 2026-03-03 22:51:38 +00:00
2 changed files with 9 additions and 44 deletions

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${dmSans.variable} ${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1416,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -188,6 +188,9 @@ export default function LandingPage() {
title="Common Questions About RealtimeAI"
description="Everything you need to know about our real-time translation system for esports teams"
faqs={[
{
id: "6", title: "How do you handle match security and data privacy?", content: "All communications are encrypted end-to-end with enterprise-grade security. We comply with GDPR, CCPA, and all international data protection regulations. Your team strategies remain 100% confidential."
},
{
id: "1", title: "What languages does RealtimeAI support?", content: "We support 52+ languages with specialized training in gaming terminology across major competitive titles. Our AI continuously learns new callouts and gaming-specific vocabulary to ensure accuracy."
},
@@ -202,9 +205,6 @@ export default function LandingPage() {
},
{
id: "5", title: "What happens if I need custom language support or tuning?", content: "Our Elite Organization tier includes dedicated AI training. We'll customize the system specifically for your team's language needs, regional slang, and custom callouts to maximize accuracy."
},
{
id: "6", title: "How do you handle match security and data privacy?", content: "All communications are encrypted end-to-end with enterprise-grade security. We comply with GDPR, CCPA, and all international data protection regulations. Your team strategies remain 100% confidential."
}
]}
faqsAnimation="slide-up"