tangled
alpha
login
or
join now
modamo.xyz
/
scrobbleToBio
2
fork
atom
Update your ATProto bio with what you're currently listening to
2
fork
atom
overview
issues
pulls
pipelines
Add basic layout
modamo-gh
4 months ago
601954b4
967aec7f
+13
-64
1 changed file
expand all
collapse all
unified
split
app
page.tsx
+13
-64
app/page.tsx
···
1
1
-
import Image from "next/image";
1
1
+
const Home = () => {
2
2
+
return (
3
3
+
<div className="bg-linear-to-r from-red-800 grid grid-cols-2 h-screen to-[#6868B6] w-screen">
4
4
+
<div className="col-span-1 flex items-center justify-center">
5
5
+
Last.fm
6
6
+
</div>
7
7
+
<div className="col-span-1 flex items-center justify-center">
8
8
+
@proto
9
9
+
</div>
10
10
+
</div>
11
11
+
);
12
12
+
};
2
13
3
3
-
export default function Home() {
4
4
-
return (
5
5
-
<div className="flex min-h-screen items-center justify-center bg-zinc-50 font-sans dark:bg-black">
6
6
-
<main className="flex min-h-screen w-full max-w-3xl flex-col items-center justify-between py-32 px-16 bg-white dark:bg-black sm:items-start">
7
7
-
<Image
8
8
-
className="dark:invert"
9
9
-
src="/next.svg"
10
10
-
alt="Next.js logo"
11
11
-
width={100}
12
12
-
height={20}
13
13
-
priority
14
14
-
/>
15
15
-
<div className="flex flex-col items-center gap-6 text-center sm:items-start sm:text-left">
16
16
-
<h1 className="max-w-xs text-3xl font-semibold leading-10 tracking-tight text-black dark:text-zinc-50">
17
17
-
To get started, edit the page.tsx file.
18
18
-
</h1>
19
19
-
<p className="max-w-md text-lg leading-8 text-zinc-600 dark:text-zinc-400">
20
20
-
Looking for a starting point or more instructions? Head over to{" "}
21
21
-
<a
22
22
-
href="https://vercel.com/templates?framework=next.js&utm_source=create-next-app&utm_medium=appdir-template-tw&utm_campaign=create-next-app"
23
23
-
className="font-medium text-zinc-950 dark:text-zinc-50"
24
24
-
>
25
25
-
Templates
26
26
-
</a>{" "}
27
27
-
or the{" "}
28
28
-
<a
29
29
-
href="https://nextjs.org/learn?utm_source=create-next-app&utm_medium=appdir-template-tw&utm_campaign=create-next-app"
30
30
-
className="font-medium text-zinc-950 dark:text-zinc-50"
31
31
-
>
32
32
-
Learning
33
33
-
</a>{" "}
34
34
-
center.
35
35
-
</p>
36
36
-
</div>
37
37
-
<div className="flex flex-col gap-4 text-base font-medium sm:flex-row">
38
38
-
<a
39
39
-
className="flex h-12 w-full items-center justify-center gap-2 rounded-full bg-foreground px-5 text-background transition-colors hover:bg-[#383838] dark:hover:bg-[#ccc] md:w-[158px]"
40
40
-
href="https://vercel.com/new?utm_source=create-next-app&utm_medium=appdir-template-tw&utm_campaign=create-next-app"
41
41
-
target="_blank"
42
42
-
rel="noopener noreferrer"
43
43
-
>
44
44
-
<Image
45
45
-
className="dark:invert"
46
46
-
src="/vercel.svg"
47
47
-
alt="Vercel logomark"
48
48
-
width={16}
49
49
-
height={16}
50
50
-
/>
51
51
-
Deploy Now
52
52
-
</a>
53
53
-
<a
54
54
-
className="flex h-12 w-full items-center justify-center rounded-full border border-solid border-black/[.08] px-5 transition-colors hover:border-transparent hover:bg-black/[.04] dark:border-white/[.145] dark:hover:bg-[#1a1a1a] md:w-[158px]"
55
55
-
href="https://nextjs.org/docs?utm_source=create-next-app&utm_medium=appdir-template-tw&utm_campaign=create-next-app"
56
56
-
target="_blank"
57
57
-
rel="noopener noreferrer"
58
58
-
>
59
59
-
Documentation
60
60
-
</a>
61
61
-
</div>
62
62
-
</main>
63
63
-
</div>
64
64
-
);
65
65
-
}
14
14
+
export default Home;