mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-14 07:26:52 +00:00
22 lines
999 B
JavaScript
22 lines
999 B
JavaScript
import Link from 'next/link'
|
|
|
|
export default function Logo() {
|
|
return (
|
|
<Link href="/" className="block" aria-label="Cruip">
|
|
<svg className="w-8 h-8" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg">
|
|
<defs>
|
|
<radialGradient cx="21.152%" cy="86.063%" fx="21.152%" fy="86.063%" r="79.941%" id="footer-logo">
|
|
<stop stopColor="#4FD1C5" offset="0%" />
|
|
<stop stopColor="#81E6D9" offset="25.871%" />
|
|
<stop stopColor="#338CF5" offset="100%" />
|
|
</radialGradient>
|
|
</defs>
|
|
<rect width="32" height="32" rx="16" fill="url(#footer-logo)" fillRule="nonzero" />
|
|
<text x="42%" y="50%" textAnchor="middle" dominantBaseline="central" fontSize="24" fontFamily="'Century Gothic'" fontWeight="700" fontStyle="italic" fill="white">
|
|
N
|
|
</text>
|
|
</svg>
|
|
</Link>
|
|
)
|
|
}
|