Skip to content
Merged
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
6 changes: 6 additions & 0 deletions src/app/airdrop/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { UserPoints } from "../../components/airdrop/UserPoints";
import { ClaimPanel } from "../../components/airdrop/ClaimPanel";
import { Leaderboard } from "../../components/airdrop/Leaderboard";
import { WeeklySnapshots } from "../../components/airdrop/WeeklySnapshots";
import { InnovationBanner } from "../../components/airdrop/InnovationBanner";
import { AIRDROP_CONFIG } from "../../../lib/airdrop/config";

export const metadata: Metadata = {
Expand All @@ -19,6 +20,11 @@ export default function AirdropPage() {
{/* Hero spans full width */}
<CampaignHero />

{/* Innovation banner — between hero and user sections */}
<div className="mt-6">
<InnovationBanner />
</div>

{/* 2-column grid below hero */}
<div className="mt-6 grid grid-cols-1 gap-6 lg:grid-cols-[1fr_320px]">
{/* Left column: user-specific */}
Expand Down
60 changes: 60 additions & 0 deletions src/components/airdrop/InnovationBanner.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
const COLUMNS = [
{
title: "TYPICAL AIRDROP",
rows: ["Fixed amount", "Dumps on listing", "No skin in game"],
highlighted: false,
},
{
title: "TYPICAL STAKING",
rows: ["Fixed APY", "Inflates supply", "No risk reward"],
highlighted: false,
},
{
title: "THIS AIRDROP",
rows: ["Pool grows with market", "Burned if no growth", "Everyone wins together"],
highlighted: true,
},
] as const;

export function InnovationBanner() {
return (
<div className="border-border rounded border p-5 space-y-4">
<div className="text-muted text-[10px] font-bold uppercase tracking-widest text-center font-mono">
── How is this different? ──
</div>

{/* Three-column comparison */}
<div className="grid grid-cols-1 sm:grid-cols-3 gap-3">
{COLUMNS.map((col) => (
<div
key={col.title}
className={`rounded border px-4 py-3 space-y-2 ${
col.highlighted
? "border-accent text-foreground"
: "border-border text-muted opacity-50"
}`}
>
<div className="text-[10px] font-bold uppercase tracking-wider font-mono text-center">
{col.title}
</div>
<div className="space-y-1.5">
{col.rows.map((row) => (
<div key={row} className="text-xs text-center font-mono">
{row}
</div>
))}
</div>
</div>
))}
</div>

{/* Summary */}
<p className="text-muted text-xs leading-relaxed max-w-xl mx-auto text-center font-mono">
The pool isn&apos;t pre-valued — it&apos;s valued <span className="text-foreground font-medium">by the market</span>.
At $100M FDV, 50,000 PLOT = $5M distributed.
At $0 growth, 50,000 PLOT = burned forever.
Everyone — team, holders, earners — wins only if PLOT grows.
</p>
</div>
);
}
Loading