Skip to content
Snippets Groups Projects
site-footer.tsx 1.22 KiB
import { Icons } from "@/components/icons"
import { cn } from "@/lib/utils"

export function SiteFooter({ className }: React.HTMLAttributes<HTMLElement>) {
    return (
        <footer className={cn(className)}>
            <div className="bg-black">
                <div className="container flex flex-col items-center justify-between gap-4 py-10 md:h-24 md:flex-row md:py-0">
                    <div className="flex flex-col items-center gap-4 px-8 md:flex-row md:gap-2 md:px-0">
                        <Icons.logoWhite className="h-7 w-7" />
                        <span className="md:pr-6">
                            <Icons.logoWhiteName className="" />
                        </span>
                        <p className="text-white text-center text-sm leading-loose md:text-left">
                            Built by
                            Yusuf Akgül,
                            Omar Kasbah,
                            Caner Ilaslan,
                            David Jakszta,
                            Serdar Dorak,
                            and Valeria Luft
                            with ❤️
                        </p>
                    </div>
                </div>
            </div>
        </footer>
    )
}