fix: logo should render and get started button works
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
import React from 'react';
|
||||
import { Twitter } from 'lucide-react';
|
||||
import logo from '@/assets/images/icon.png';
|
||||
|
||||
interface FooterProps {
|
||||
onPrivacyClick?: (e: React.MouseEvent) => void;
|
||||
@@ -13,9 +14,9 @@ const Footer: React.FC<FooterProps> = ({ onPrivacyClick }) => {
|
||||
{/* Brand Column */}
|
||||
<div className="col-span-1">
|
||||
<div className="flex items-center gap-2 mb-4">
|
||||
<img
|
||||
src="/assets/images/icon.png"
|
||||
alt="Nemia Logo"
|
||||
<img
|
||||
src={logo}
|
||||
alt="Nemia Logo"
|
||||
className="w-6 h-6 rounded object-contain"
|
||||
/>
|
||||
<span className="font-display font-bold text-lg text-white">
|
||||
|
||||
Reference in New Issue
Block a user