Spaces:
Sleeping
Sleeping
File size: 941 Bytes
9548e93 bdba541 cbbb114 9548e93 bdba541 9548e93 bdba541 d219561 9548e93 bdba541 cbbb114 bdba541 9548e93 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | 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>
);
}
|