Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
176 changes: 88 additions & 88 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 15 additions & 13 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -151,20 +151,22 @@ export default function Home() {

{/* ── Right column — Visual stack ── */}
<div className="relative flex justify-center lg:justify-end order-1 lg:order-2">
<div className="relative w-full max-w-xl">
<div className="absolute -top-6 -right-6 hidden sm:block rounded-2xl border border-white/10 bg-white/5 px-4 py-3">
<p className="text-xs text-white/60">Today&apos;s activity</p>
<p className="text-lg font-semibold text-white">
124 questions answered
</p>
</div>
<div className="absolute -bottom-6 -left-6 hidden sm:block rounded-2xl border border-white/10 bg-white/5 px-4 py-3">
<p className="text-xs text-white/60">Mentors online</p>
<p className="text-lg font-semibold text-white">18 now</p>
</div>
<TerminalWindow />
</div>
<div className="relative w-full max-w-xl">
<TerminalWindow />
</div>

{/* Top right card - matches metrics strip styling */}
<div className="absolute -top-20 -right-12 hidden sm:block rounded-2xl border border-white/10 bg-white/5 px-4 py-3 z-10">
<p className="text-xs text-white/50">Today&apos;s activity</p>
<p className="text-lg font-semibold text-white">124 questions answered</p>
</div>

{/* Bottom left card - matches metrics strip styling */}
<div className="absolute -bottom-20 -left-12 hidden sm:block rounded-2xl border border-white/10 bg-white/5 px-4 py-3 z-10">
<p className="text-xs text-white/50">Mentors online</p>
<p className="text-lg font-semibold text-white">18 now</p>
</div>
</div>
</div>
</div>

Expand Down