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

15 lines
448 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
href="/"
2023-10-14 12:09:44 -04:00
className="center fixed h-[var(--header-height)] w-[var(--sidebar-closed-width)] border-r hover:text-primary 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-13 19:02:59 -04:00
</Link>
</div>
);
}