Skip to content

Commit

Permalink
up
Browse files Browse the repository at this point in the history
  • Loading branch information
govinda777 committed Jan 1, 2025
1 parent 97af3dc commit b2be4a9
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/components/Navbar/index.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import React, { useState } from 'react';
import { Menu, X, User } from 'lucide-react';

const logo = new URL('/public/logo.svg', import.meta.url).href;

const Navbar = () => {
const [isOpen, setIsOpen] = useState(false);

Expand All @@ -18,7 +20,11 @@ const Navbar = () => {
<div className="max-w-7xl mx-auto flex items-center justify-between">
{/* Logo */}
<div className="flex items-center">
<img src="public/logo.svg" alt="Xperience" className="h-8" />
<img
src={logo}
alt="Xperience"
className="w-[100px] h-auto"
/>
</div>

{/* Desktop Navigation */}
Expand Down

0 comments on commit b2be4a9

Please sign in to comment.