Skip to content

Commit 26cda5e

Browse files
committed
Add styled nounstacle definition
1 parent 928cc28 commit 26cda5e

2 files changed

Lines changed: 33 additions & 0 deletions

File tree

src/components/nogglesrails/NogglesRailsClosingBox.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import { NounstacleDefinition } from "./NounstacleDefinition";
12
import Image from "next/image";
23

34
export function NogglesRailsClosingBox() {
@@ -46,6 +47,8 @@ export function NogglesRailsClosingBox() {
4647
This is an onchain-born project by Gnars DAO and it’s still alive bro, still rolling, and
4748
still being built.
4849
</p>
50+
51+
<NounstacleDefinition />
4952
</article>
5053
</section>
5154
);
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
export function NounstacleDefinition() {
2+
return (
3+
<div className="mt-8 flex justify-center">
4+
<div className="w-full max-w-4xl rounded-2xl border border-border/60 bg-gradient-to-b from-background to-muted/20 px-6 py-8 shadow-sm md:px-10 md:py-10">
5+
<div className="space-y-6 text-foreground">
6+
<div className="flex flex-col gap-2 md:flex-row md:items-end md:justify-between">
7+
<div>
8+
<h3 className="text-5xl font-semibold tracking-tight md:text-7xl">Nounstacle</h3>
9+
<p className="mt-2 text-2xl italic text-muted-foreground md:text-3xl">’naun.sta.kal</p>
10+
</div>
11+
<p className="text-2xl font-medium text-muted-foreground md:text-4xl">(noun)</p>
12+
</div>
13+
14+
<div className="space-y-5 text-lg leading-8 md:text-2xl md:leading-10">
15+
<p>
16+
<span className="font-semibold text-foreground">Definition:</span> A skateboarding
17+
obstacle, such as a rail or ramp, shaped like noggles, the iconic glasses symbol of
18+
Nouns DAO.
19+
</p>
20+
21+
<p>
22+
<span className="font-semibold text-foreground">Origin:</span> Pioneered by Gnars DAO
23+
in 2023, there are now over a dozen nounstacles around the world.
24+
</p>
25+
</div>
26+
</div>
27+
</div>
28+
</div>
29+
);
30+
}

0 commit comments

Comments
 (0)