Skip to content

Commit 71a2b8e

Browse files
committed
Simplify freebuff get-started header
1 parent 2a2e779 commit 71a2b8e

File tree

1 file changed

+2
-38
lines changed

1 file changed

+2
-38
lines changed

freebuff/web/src/app/get-started/get-started-client.tsx

Lines changed: 2 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -116,44 +116,8 @@ export default function GetStartedClient({
116116
<HeroGrid />
117117
<BackgroundBeams />
118118

119-
{/* Nav */}
120-
<motion.div
121-
initial={{ opacity: 0, y: -10 }}
122-
animate={{ opacity: 1, y: 0 }}
123-
transition={{ duration: 0.5, delay: 0.1 }}
124-
className="absolute top-0 left-0 right-0 z-20 container mx-auto px-4 py-4 flex justify-between items-center"
125-
>
126-
<Link
127-
href="/"
128-
className="flex items-center space-x-2 group transition-all duration-300 hover:translate-x-0.5"
129-
>
130-
<Image
131-
src="/logo-icon.png"
132-
alt="Freebuff"
133-
width={28}
134-
height={28}
135-
className="rounded-sm opacity-60 group-hover:opacity-100 transition-all duration-300 group-hover:brightness-110"
136-
/>
137-
<span className="text-xl tracking-widest font-serif text-zinc-400 group-hover:text-white transition-colors duration-200">
138-
freebuff
139-
</span>
140-
</Link>
141-
142-
<nav className="flex items-center space-x-1">
143-
<Link
144-
href="https://github.com/CodebuffAI/codebuff"
145-
target="_blank"
146-
rel="noopener noreferrer"
147-
className="relative font-medium px-3 py-2 rounded-md transition-all duration-200 text-zinc-400 hover:text-white flex items-center gap-2 text-sm"
148-
>
149-
<Icons.github className="h-4 w-4" />
150-
<span className="hidden sm:inline">GitHub</span>
151-
</Link>
152-
</nav>
153-
</motion.div>
154-
155119
{/* Main content */}
156-
<div className="relative z-10 container mx-auto px-4 pt-16 pb-16 md:pt-36 md:pb-24 flex flex-col items-center">
120+
<div className="relative z-10 container mx-auto px-4 pt-16 pb-16 md:pt-16 md:pb-24 flex flex-col items-center">
157121
<div className="w-full max-w-2xl">
158122
<div className="bg-background/80 backdrop-blur-sm border border-zinc-800 rounded-xl overflow-hidden">
159123
{/* Header */}
@@ -240,7 +204,7 @@ export default function GetStartedClient({
240204
className={cn(
241205
'w-5 h-5 relative flex-shrink-0',
242206
editor.needsWhiteBg &&
243-
'bg-white rounded-sm p-[1px]',
207+
'bg-white rounded-sm p-[1px]',
244208
)}
245209
>
246210
<Image

0 commit comments

Comments
 (0)