diff --git a/src/app/layout.tsx b/src/app/layout.tsx index bce4229..a19a585 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1444 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Inter_Tight } 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 interTight = Inter_Tight({ - variable: "--font-inter-tight", - subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "AI Advokat - Legal AI Assistant with Citations", - description: "AI Advokat brings serious legal assistance to everyone. Upload contracts, ask questions, get cited answers grounded in real legal sources. No hallucinations.", - keywords: "legal AI, contract analysis, AI lawyer, document analysis, legal tech", - metadataBase: new URL("https://aiadvokat.com"), - alternates: { - canonical: "https://aiadvokat.com", - }, - openGraph: { - title: "AI Advokat - Legal AI Assistant", - description: "Understand legal documents with an AI that cites its sources. Upload contracts, get grounded answers.", - url: "https://aiadvokat.com", - siteName: "AI Advokat", - type: "website", - images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Af6MsvZCEYqBdOMRbFyUtJM58f/a-modern-clean-legal-tech-dashboard-inte-1772973378521-dda3f2e4.png", - alt: "AI Advokat Dashboard", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "AI Advokat - Legal AI Assistant", - description: "Understand legal documents. Upload contracts. Get cited answers.", - images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Af6MsvZCEYqBdOMRbFyUtJM58f/a-modern-clean-legal-tech-dashboard-inte-1772973378521-dda3f2e4.png", - ], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "AI Advokat | Legal Guidance Grounded in Reality", description: "AI Advokat brings serious legal assistance to everyone. Upload contracts, ask questions, get cited answers from real legal sources and your documents. No hallucinations. Just clarity."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -