Skip to content

Commit b8fb7ef

Browse files
finish front-end skeleton
1 parent 19d13dd commit b8fb7ef

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

src/app/page.tsx

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,23 @@ import Link from "next/link";
55

66
export default function Home() {
77
return (
8-
<>
9-
<header className="text-2xl text-center">FollowDiff</header>
8+
<div className="mx-auto container p-2">
9+
<header className="text-3xl text-center mb-8">FollowDiff</header>
1010
<main className="flex items-center justify-center flex-col gap-4">
11-
<h1>Curious Who Doesn&apos;t Follow You Back</h1>
12-
<h2>Safely see your non-followers using your official Instagram data. Your files are processed right here in your browser and are never uploaded anywhere.</h2>
11+
<h1 className="text-2xl">Curious Who Doesn&apos;t Follow You Back?</h1>
12+
<h2 className="text-xl text-center">Safely see your non-followers using your official Instagram data. Your files are processed right here in your browser and are never uploaded anywhere.</h2>
1313
{/* Drop Zone */}
14-
<div className="border-2 px-40 py-40">
15-
Drop Zone
14+
<div className="border-2 px-1/2 py-40 flex flex-col gap-8 items-center justify-center w-1/2">
15+
Drag & drop your followers.json & following.json files here
16+
<span>or</span>
17+
<button className="border-1 p-2">Select Files</button>
1618
</div>
1719
<Link href="/tutorial" className="underline"> Don&apos;t have your files? Here&apos;s how to get them.</Link>
1820
</main>
1921
<footer className="fixed bottom-0 right-0 p-4">
2022
Open Source & Privacy-First
2123
</footer>
22-
</>
24+
</div>
2325
);
2426
}
2527

0 commit comments

Comments
 (0)