cognee/cognee-frontend/src/ui/Partials/Footer/Footer.tsx
2024-05-21 10:27:19 +02:00

25 lines
776 B
TypeScript

import Link from 'next/link';
import { Stack } from 'ohmy-ui';
import { DiscordIcon, GithubIcon } from '@/ui/Icons';
import { TextLogo } from '@/modules/app';
import styles from './Footer.module.css';
export default function Footer() {
return (
<footer className={styles.footer}>
<Stack orientation="horizontal" gap="between">
<div className={styles.leftSide}>
<TextLogo width={92} height={24} />
</div>
<div className={styles.rightSide}>
<Link target="_blank" href="https://github.com/topoteretes/cognee">
<GithubIcon />
</Link>
<Link target="_blank" href="https://discord.gg/m63hxKsp4p">
<DiscordIcon />
</Link>
</div>
</Stack>
</footer>
);
}