mirror of
https://github.com/wassname/Open-Assistant.git
synced 2026-07-07 00:06:32 +08:00
74 lines
2.9 KiB
TypeScript
74 lines
2.9 KiB
TypeScript
import Image from "next/image";
|
|
import Link from "next/link";
|
|
import { Container } from "./Container";
|
|
|
|
export function Footer() {
|
|
return (
|
|
<footer className="border-t border-gray-200 bg-white">
|
|
<main>
|
|
<Container className="">
|
|
<div className="flex flex-wrap justify-between gap-y-12 py-10 lg:items-center lg:py-16">
|
|
<div className="flex items-center text-black pr-8">
|
|
<Link href="/" aria-label="Home" className="flex items-center">
|
|
<Image src="/images/logos/logo.svg" className="mx-auto object-fill" width="52" height="52" alt="logo" />
|
|
</Link>
|
|
|
|
<div className="ml-2">
|
|
<p className="text-base font-bold">Open Assistant</p>
|
|
<p className="text-sm">Conversational AI for everyone.</p>
|
|
</div>
|
|
</div>
|
|
<nav className="flex justify-center gap-20">
|
|
<div className="flex flex-col text-sm leading-7">
|
|
<b>Information</b>
|
|
<div className="flex flex-col leading-5">
|
|
<Link href="#" aria-label="Our Team" className="hover:underline underline-offset-2">
|
|
Our Team
|
|
</Link>
|
|
<Link href="/#join-us" aria-label="Join Us" className="hover:underline underline-offset-2">
|
|
Join Us
|
|
</Link>
|
|
</div>
|
|
</div>
|
|
<div className="flex flex-col text-sm leading-7">
|
|
<b>Legal</b>
|
|
<div className="flex flex-col leading-5">
|
|
<Link href="#" aria-label="Privacy Policy" className="hover:underline underline-offset-2">
|
|
Privacy Policy
|
|
</Link>
|
|
<Link href="#" aria-label="Terms of Service" className="hover:underline underline-offset-2">
|
|
Terms of Service
|
|
</Link>
|
|
</div>
|
|
</div>
|
|
<div className="flex flex-col text-sm leading-7">
|
|
<b>Connect</b>
|
|
<div className="flex flex-col leading-5">
|
|
<Link
|
|
href="https://github.com/LAION-AI/Open-Assistant"
|
|
rel="noopener noreferrer nofollow"
|
|
target="_blank"
|
|
aria-label="Privacy Policy"
|
|
className="hover:underline underline-offset-2"
|
|
>
|
|
Github
|
|
</Link>
|
|
<Link
|
|
href="https://discord.gg/pXtnYk9c"
|
|
rel="noopener noreferrer nofollow"
|
|
target="_blank"
|
|
aria-label="Terms of Service"
|
|
className="hover:underline underline-offset-2"
|
|
>
|
|
Discord
|
|
</Link>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
</div>
|
|
</Container>
|
|
</main>
|
|
</footer>
|
|
);
|
|
}
|