import type { Metadata } from "next"; import "./globals.css"; import Link from "next/link"; export const metadata: Metadata = { title: "TalentPulse — AI Candidate Matching", description: "Two-stage AI pipeline: vector retrieval + cross-encoder reranking + LLM explanations.", }; export default function RootLayout({ children }: { children: React.ReactNode }) { return (
{children}
); }