initial commit

This commit is contained in:
Harivansh Rathi 2024-11-24 20:56:03 -05:00
commit ef9ccf22d3
133 changed files with 20802 additions and 0 deletions

12
components/logo.tsx Normal file
View file

@ -0,0 +1,12 @@
import { Squircle } from 'lucide-react'
export const Logo = () => {
return (
<div className="flex items-center gap-2 group">
<Squircle className="w-12 h-12 text-primary group-hover:-rotate-12 transition-all duration-300" />
<span className="text-xl group-hover:translate-x-0.5 transition-all duration-300">
YourCompany
</span>
</div>
)
}