diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 4828c4e..e435d7b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1441 +1,19 @@ -import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { DM_Sans } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const dmSans = DM_Sans({ - variable: "--font-dm-sans", - subsets: ["latin"], -}); +import type { Metadata } from 'next'; export const metadata: Metadata = { - title: "Talaba AI - Academic Writing & Research Co-Pilot", - description: "Premium academic assistant for coursework, articles, theses, and dissertations. Co-write with AI, manage research, generate slides, and prepare for defense—all in one platform.", - keywords: "academic writing, AI co-pilot, dissertation help, research assistant, thesis writing, student app", - metadataBase: new URL("https://talaba.ai"), - alternates: { - canonical: "https://talaba.ai", - }, - openGraph: { - title: "Talaba AI - Your Academic Operating System", - description: "Learn to write better, research smarter, and defend with confidence. AI-powered academic assistant for bachelor, master, and PhD students.", - url: "https://talaba.ai", - siteName: "Talaba AI", - images: [ - { - url: "https://talaba.ai/og-image.png", - alt: "Talaba AI - Academic Assistant Platform", - }, - ], - type: "website", - }, - twitter: { - card: "summary_large_image", - title: "Talaba AI - Academic Co-Pilot", - description: "Transform your academic work. Co-write with AI, manage research, generate presentations.", - images: ["https://talaba.ai/twitter-image.png"], - }, - robots: { - index: true, - follow: true, - }, + title: 'Talaba AI - Your Academic Operating System', + description: 'Co-write with AI, master research, prepare for defense. Complete academic platform for students.', + keywords: 'academic writing, AI assistant, research tools, dissertation help, student platform', }; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -