import NextLink from "next/link"; export const ProjectOverview = () => { return (

Scira MCP Chat

); }; const Link = ({ children, href, }: { children: React.ReactNode; href: string; }) => { return ( {children} ); };