flockstr/app/(app)/_layout/Keystone.tsx

18 lines
614 B
TypeScript
Raw Normal View History

2023-10-13 19:02:59 -04:00
import Link from "next/link";
2023-10-14 12:09:44 -04:00
import Logo from "@/assets/Logo";
2023-10-13 19:02:59 -04:00
export default function Keystone() {
return (
<div className="center hidden sm:flex">
<Link
2023-10-27 17:48:49 -04:00
href="/explore"
2023-10-14 22:51:37 -04:00
className="center fixed h-[var(--header-height)] w-[var(--sidebar-closed-width)] gap-x-3 border-r text-primary hover:text-primary/80 xl:w-[var(--sidebar-open-width)] xl:justify-start xl:pl-5"
2023-10-13 19:02:59 -04:00
>
2023-10-14 12:09:44 -04:00
<Logo className="h-[30px] w-[30px]" />
2023-10-27 17:48:49 -04:00
<div className="hidden font-condensed text-xl font-semibold text-foreground xl:inline-flex">
2023-10-14 22:51:37 -04:00
Flockstr
</div>
2023-10-13 19:02:59 -04:00
</Link>
</div>
);
}