Skip to content

Commit a93e5d9

Browse files
committed
Created a
1 parent e38ee01 commit a93e5d9

File tree

2 files changed

+65
-10
lines changed

2 files changed

+65
-10
lines changed

src/app/about/page.tsx

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
import Navbar from "../../components/Navbar";
2+
import { Metadata } from "next";
3+
4+
export const metadata: Metadata = {
5+
title: "About",
6+
};
7+
8+
export default function About() {
9+
return (
10+
<div className="h-screen items-center justify-center font-sans dark:bg-black">
11+
<Navbar />
12+
<main className="h-screen w-screen max-w-3xl items-center py-32 px-16 bg-white dark:bg-black">
13+
<div className="flex flex-col items-center gap-6 text-center sm:items-start sm:text-left">
14+
<h1 className="max-w-xs text-3xl font-semibold leading-10 tracking-tight text-black dark:text-zinc-50">
15+
About This Project
16+
</h1>
17+
<p className="mt-2">
18+
fill in later... to lazy to do now
19+
</p>
20+
</div>
21+
</main>
22+
</div>
23+
);
24+
}

src/app/page.tsx

Lines changed: 41 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,12 @@ export default function Home() {
2323
>
2424
Check out the Wiki
2525
</a>
26+
<a
27+
className="mt-4 inline-block rounded-md bg-blue-600 px-4 py-2 text-sm font-medium text-white hover:bg-blue-700"
28+
href="https://scratch.mit.edu/discuss/topic/831216/"
29+
>
30+
View The Discussion Topic
31+
</a>
2632
<h1 className="max-w-xs text-2xl font-semibold leading-10 tracking-tight text-black dark:text-zinc-50 mt-8">
2733
Our Backstory
2834
</h1>
@@ -39,7 +45,7 @@ export default function Home() {
3945
href="https://scratch.mit.edu/users/AmpElectrecuted"
4046
className="hover:underline"
4147
>
42-
AmpElectrecuted
48+
AmpElectrecuted (who later got banned from Scratch)
4349
</a>
4450
, made a suggestion on Scratch's forums asking the Scratch Team to
4551
make a movie. Many were in favor of the suggestion, and it gained a
@@ -77,15 +83,40 @@ export default function Home() {
7783
</p>
7884
<p>
7985
{" "}
80-
He made a new one that day, but the rules were stricter. There was a
81-
new a strike system - if one got 3 strikes, they would get kicked
82-
out of the forum. This has only happened to two users,
83-
zeldatheaxolotl and ToastRoastBoast, the former of which was
84-
rehired. To be rehired, one would have to go into a training studio
85-
and prove they could be rehired. By the time the second topic
86-
reached 500 pages, many had accepted that it was too long. On July
87-
18, 2025, scratchcode1_2_3 created a third topic, which is still
88-
used today.
86+
He made{" "}
87+
<a
88+
className="hover:underline"
89+
href="https://scratch.mit.edu/discuss/topic/797462/"
90+
>
91+
a new one
92+
</a>{" "}
93+
that day, but the rules were stricter. There was a new a strike
94+
system - if one got 3 strikes, they would get kicked out of the
95+
forum. This has only happened to two users,{" "}
96+
<a
97+
className="hover:underline"
98+
href="https://scratch.mit.edu/users/zeldatheaxolotl"
99+
>
100+
zeldatheaxolotl
101+
</a>{" "}
102+
and{" "}
103+
<a
104+
className="hover:underline"
105+
href="https://scratch.mit.edu/users/ToastRoastBoast"
106+
>
107+
ToastRoastBoast
108+
</a>
109+
, the former of which was rehired. To be rehired, one would have to
110+
go into a training studio and prove they could be rehired. By the
111+
time the second topic reached 500 pages, many had accepted that it
112+
was too long. On July 18, 2025, scratchcode1_2_3 created a{" "}
113+
<a
114+
className="hover:underline"
115+
href="https://scratch.mit.edu/discuss/topic/831216"
116+
>
117+
third topic,
118+
</a>{" "}
119+
which is still used today.
89120
</p>
90121
</div>
91122
</main>

0 commit comments

Comments
 (0)