We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 017278d commit 95481baCopy full SHA for 95481ba
src/components/RootLayout.tsx
@@ -68,16 +68,14 @@ function Header({
68
onMouseEnter={() => setLogoHovered(true)}
69
onMouseLeave={() => setLogoHovered(false)}
70
>
71
- <Logomark
72
- className="h-8 sm:hidden"
73
- invert={invert}
74
- filled={logoHovered}
75
- />
76
- <Logo
77
- className="hidden h-8 sm:block"
78
79
80
+ <span
+ className={clsx(
+ 'font-display text-3xl font-medium tracking-tight text-balance',
+ invert ? 'text-white' : 'text-sky-700',
+ )}
+ >
+ Flexnode
+ </span>
81
</Link>
82
<div className="flex items-center gap-x-8">
83
<Button href="#contact-us" invert={invert}>
0 commit comments