Files
nirvana-v3/packages/web/components/header/index.tsx
T

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-xl px-10 pt-5 flex flex-row justify-center md:justify-start">
<HorizontalLogo type={LogoType.small} />
</div>
);
}