aisf-landing/components/logo.tsx

15 lines
369 B
TypeScript

import { Brain } from 'lucide-react'
import Link from 'next/link'
interface LogoProps {
className?: string
}
export default function Logo({ className }: LogoProps) {
return (
<Link href="/" className={`text-2xl font-bold text-white flex items-center gap-2 ${className}`}>
<Brain className="w-8 h-8 text-[#4AFF8F]" />
AiSaleForce
</Link>
)
}