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-15 11:44:15 -04:00
|
|
|
href="/app"
|
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-14 22:51:37 -04:00
|
|
|
<div className="font-condensed hidden text-xl font-semibold text-foreground xl:inline-flex">
|
|
|
|
Flockstr
|
|
|
|
</div>
|
2023-10-13 19:02:59 -04:00
|
|
|
</Link>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|