File size: 423 Bytes
cc276cc
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
import { MessageCircle } from 'lucide-react';

export const Logo = () => (
    <div className="flex items-center justify-center gap-3 mb-8">
        <div className="w-12 h-12 bg-sky-500 rounded-2xl flex items-center justify-center shadow-lg">
            <MessageCircle className="h-8 w-8 text-white" />
        </div>
        <h1 className="text-3xl font-bold text-foreground tracking-tight">WhisperLink</h1>
    </div>
);