Skip to content

Commit f726941

Browse files
committed
chore: logo update
1 parent 850c994 commit f726941

File tree

1 file changed

+15
-2
lines changed

1 file changed

+15
-2
lines changed

app/components/site-header.tsx

+15-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import { Link } from '@remix-run/react'
2+
import { ChevronRight, ChevronLeft } from 'lucide-react';
23
import { Button } from '#app/components/ui/button.tsx'
34
import {
45
SheetTrigger,
@@ -69,8 +70,20 @@ function Logo() {
6970
return (
7071
<Link to="/" className="group grid leading-snug">
7172
<div className="flex items-center justify-center">
72-
<CodeIcon className="h-6 w-6" />
73-
<span className="sr-only">Lucas Byerley</span>
73+
<ChevronLeft className="mr-[-5px] h-6 w-6" />
74+
<span>l</span>
75+
<span>u</span>
76+
<span>c</span>
77+
<span>a</span>
78+
<span>s</span>
79+
<span>b</span>
80+
<span>.</span>
81+
<span>d</span>
82+
<span>e</span>
83+
<span className="mr-1">v</span>
84+
<span className="text-sm font-semibold">/</span>
85+
<ChevronRight className="ml-[-6px] h-6 w-6" />
86+
<span className="sr-only">lucasb.dev</span>
7487
</div>
7588
</Link>
7689
)

0 commit comments

Comments
 (0)