import {  SUB_TITLE } from "../../misc/globals";
import SvgLogo from "./logo";
export default function Header() {
    return (
        <header className="flex justify-center h-screen w-auto items-center md:items-baseline ">
            <div className="flex flex-col w-full">
                <SvgLogo className="object-fill w-full h-auto" />
                <h2 className="capitalize text-white font-bold text-center md:text-3xl">
                    {SUB_TITLE}
                </h2>
            </div>
        </header>
    )
}