ClauseGuard / web /app /layout.tsx
gaurv007's picture
Replace all clauseguard.com URLs with clauseguardweb.netlify.app
d219561 verified
raw
history blame contribute delete
941 Bytes
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>
);
}