scira-chat / components /project-overview.tsx
mukaddamzaid's picture
init commit
5012205
raw
history blame
567 Bytes
import NextLink from "next/link";
export const ProjectOverview = () => {
return (
<div className="flex flex-col items-center justify-end">
<h1 className="text-3xl font-semibold mb-4">Scira MCP Chat</h1>
</div>
);
};
const Link = ({
children,
href,
}: {
children: React.ReactNode;
href: string;
}) => {
return (
<NextLink
target="_blank"
className="text-blue-500 hover:text-blue-600 dark:text-blue-400 dark:hover:text-blue-300 transition-colors duration-75"
href={href}
>
{children}
</NextLink>
);
};