You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
648B

  1. import { SUB_TITLE } from "../misc/globals";
  2. import LinkList from "./link-list";
  3. import SvgLogo from "./logo";
  4. export default function Header() {
  5. return (
  6. <header className="bg-cover bg-no-repeat bg-film-background h-full w-auto">
  7. <div className="flex justify-center items-center flex-col w-full h-full md:space-y-7 ">
  8. <SvgLogo className="object-fill md:w-auto w-full h-auto md:h-2/3" />
  9. <h2 className="capitalize text-white font-bold text-center md:text-3xl">
  10. {SUB_TITLE}
  11. </h2>
  12. <LinkList />
  13. </div>
  14. </header>
  15. )
  16. }