Spaces:
Sleeping
Sleeping
| import type { Metadata } from "next"; | |
| import { Nav } from "@/components/nav"; | |
| import { ExtensionBridge } from "@/components/extension-bridge"; | |
| import "./globals.css"; | |
| export const metadata: Metadata = { | |
| title: "ClauseGuard — AI Fine Print Scanner", | |
| description: "Scans Terms of Service, contracts, and leases for unfair clauses. Get a risk score before you click accept.", | |
| keywords: ["terms of service scanner", "contract analyzer", "unfair clauses", "legal AI"], | |
| openGraph: { | |
| title: "ClauseGuard", | |
| description: "Know what you are agreeing to.", | |
| url: "https://clauseguardweb.netlify.app", | |
| siteName: "ClauseGuard", | |
| type: "website", | |
| }, | |
| }; | |
| export default function RootLayout({ children }: { children: React.ReactNode }) { | |
| return ( | |
| <html lang="en"> | |
| <body className="antialiased text-zinc-900 bg-white"> | |
| <Nav /> | |
| {children} | |
| <ExtensionBridge /> | |
| </body> | |
| </html> | |
| ); | |
| } | |