Skip to content

Commit 1ba8397

Browse files
integrate link to github and style footer
1 parent b729f99 commit 1ba8397

1 file changed

Lines changed: 18 additions & 9 deletions

File tree

src/app/page.tsx

Lines changed: 18 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,40 @@
1-
"use client"
1+
"use client";
22

33
import { Github, Upload } from "lucide-react";
44
import Link from "next/link";
55

6-
76
export default function Home() {
87
return (
98
<div className="mx-auto container p-10">
109
<main className="flex items-center justify-center flex-col gap-4 px-12">
1110
<h1 className="text-5xl">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>
13-
11+
<h2 className="text-xl text-center">
12+
Safely see your non-followers using your official Instagram data. Your files are processed
13+
right here in your browser and are never uploaded anywhere.
14+
</h2>
15+
1416
{/* Drop Zone */}
1517
<div className="border-2 px-1/2 py-30 flex flex-col gap-8 items-center justify-center w-1/2 border-dashed rounded-3xl mt-12 text-lg">
1618
<Upload size={50}></Upload>
1719
Drag & drop your followers.json & following.json files here
1820
<span>or</span>
1921
<button className="border-1 p-2 text-lg">Select Files</button>
2022
</div>
21-
22-
<Link href="/tutorial" className="underline"> Don&apos;t have your files? Here&apos;s how to get them.</Link>
23+
24+
<Link href="/tutorial" className="underline">
25+
{" "}
26+
Don&apos;t have your files? Here&apos;s how to get them.
27+
</Link>
2328
</main>
2429

25-
<footer className="fixed bottom-0 right-0 p-5 flex flex-row gap-2">
30+
<a
31+
href="https://github.com/Eric-Zhang-Developer/follow-diff"
32+
target="_blank"
33+
rel="noopener noreferrer"
34+
className="fixed bottom-0 right-0 p-5 flex flex-row gap-2 hover:scale-110 transition"
35+
>
2636
Open Source & Privacy-First <Github></Github>
27-
</footer>
37+
</a>
2838
</div>
2939
);
3040
}
31-
  

0 commit comments

Comments
 (0)