import type { Metadata } from "next"; import { Inter } from "next/font/google"; import "./globals.css"; import { Providers } from "./providers"; import { AuthGuard } from "@/components/shared/AuthGuard"; const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { title: "PocketVeto", description: "Monitor US Congress with AI-powered bill summaries and trend analysis", }; export default function RootLayout({ children, }: { children: React.ReactNode; }) { return (