diff --git a/src/assets/logo.png b/src/assets/logo.png new file mode 100644 index 0000000..93d4afd Binary files /dev/null and b/src/assets/logo.png differ diff --git a/src/components/Logo.tsx b/src/components/Logo.tsx index 1f6231a..dff4c53 100644 --- a/src/components/Logo.tsx +++ b/src/components/Logo.tsx @@ -1,33 +1,18 @@ +import logoImage from "@/assets/logo.png"; + const Logo = ({ className = "", size = "default" }: { className?: string; size?: "small" | "default" | "large" }) => { const sizeClasses = { - small: "w-16 h-12", - default: "w-24 h-18", - large: "w-48 h-36" + small: "h-12", + default: "h-20", + large: "h-32" }; return ( -
- - {/* Outer oval border */} - - {/* Inner oval border */} - - - {/* Text */} - - AKTIEBOLAGET - - - LENNART - - - SVENSSON - - - KONDITORIVAROR - - -
+ Lennart Svensson Konditorivaror ); };