Initial commit

This commit is contained in:
dk
2026-01-02 01:03:44 +02:00
commit 0250e7b91c
308 changed files with 62420 additions and 0 deletions

View File

@@ -0,0 +1,47 @@
"use client";
// import Image from "next/image";
import { cls } from "@/lib/utils";
interface LogoProps {
// logoSrc?: string;
// logoAlt?: string;
brandName?: string;
className?: string;
// imageClassName?: string;
textClassName?: string;
}
const Logo = ({
// logoSrc,
// logoAlt = "",
brandName = "Webild",
// className = "",
// imageClassName = "",
textClassName = ""
}: LogoProps) => {
// if (logoSrc) {
// return (
// <div className={cls("relative h-[var(--text-xl)] w-auto", className)}>
// <Image
// src={logoSrc}
// alt={logoAlt}
// width={100}
// height={24}
// className={cls("h-full w-auto object-contain", imageClassName)}
// unoptimized={logoSrc.startsWith('http') || logoSrc.startsWith('//')}
// />
// </div>
// );
// }
return (
<h2 className={cls("text-xl font-medium text-foreground", textClassName)}>
{brandName}
</h2>
);
};
Logo.displayName = "Logo";
export default Logo;