agenticworkflowsspace/proxyvault
0
1import type { Metadata } from "next";2import "./globals.css";3 4export const metadata: Metadata = {5 title: "ProxyVault — Cinematic Proxy Scanner",6 description: "Scan, filter and test proxies with real-time fraud scores, location and type data.",7};8 9export default function RootLayout({10 children,11}: {12 children: React.ReactNode;13}) {14 return (15 <html lang="en">16 <body className="noise antialiased">{children}</body>17 </html>18 );19}20 