Files
nirvana-v3/packages/web/components/header/index.tsx
T
2022-04-19 05:47:13 -05:00

11 lines
349 B
TypeScript

import HorizontalLogo from "../../../components/logo/horizontal";
import { LogoType } from "@nirvana/components/logo/full";
export default function Header() {
return (
<div className="container mx-auto max-w-screen-lg px-10 pt-5 flex flex-row justify-center md:justify-start">
<HorizontalLogo type={LogoType.small} />
</div>
);
}