Spaces:
Running
Running
File size: 567 Bytes
5012205 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
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>
);
};
|