diff --git a/index.html b/index.html
index 38a5fa7..e340d28 100644
--- a/index.html
+++ b/index.html
@@ -1,21 +1,20 @@
-
+
diff --git a/src/components/Header.tsx b/src/components/Header.tsx
index b863dd4..084e3ed 100644
--- a/src/components/Header.tsx
+++ b/src/components/Header.tsx
@@ -13,6 +13,7 @@ import {
MobileNavToggle,
MobileNavMenu,
} from "@/components/ui/resizable-navbar";
+import Logo from "@/components/Logo";
const Header = () => {
const navItems = [
@@ -30,6 +31,7 @@ const Header = () => {
{/* Desktop Navigation */}
+
Webklar
@@ -52,6 +54,7 @@ const Header = () => {
+
Webklar
diff --git a/src/components/Logo.tsx b/src/components/Logo.tsx
new file mode 100644
index 0000000..e21e64d
--- /dev/null
+++ b/src/components/Logo.tsx
@@ -0,0 +1,39 @@
+interface LogoProps {
+ className?: string;
+ width?: number;
+ height?: number;
+}
+
+const Logo = ({ className, width = 30, height = 30 }: LogoProps) => (
+
+);
+
+export default Logo;