Skip to content

Commit 87e3a7c

Browse files
authored
Edited landing page with hero section and Get Started button (#69)
1 parent 58ac617 commit 87e3a7c

File tree

1 file changed

+37
-4
lines changed

1 file changed

+37
-4
lines changed

src/app/page.tsx

Lines changed: 37 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,41 @@
1-
// import AutoSignInTestComponent from "@/components/autoSignIn";
1+
import Image from "next/image";
2+
import Link from "next/link";
3+
import Navigation from "@/components/shared/navbar";
4+
import AutoSignInTestComponent from "@/components/auth/autoSignIn";
5+
26
export default function Home() {
37
return (
4-
<div>
5-
I suppose tis is the main page
8+
<div className="flex min-h-[calc(100vh-5rem)] items-center justify-center bg-slate-800">
9+
<section className="mx-auto flex max-w-4xl flex-col gap-6 px-6 text-center text-slate-50">
10+
<p className="text-xs font-semibold uppercase tracking-[0.2em] text-blue-400">
11+
Learning with ACM
12+
</p>
13+
14+
<h1 className="text-4xl sm:text-5xl font-bold tracking-tight">
15+
Level up your skills with the ACM learning platform
16+
</h1>
17+
18+
<p className="text-base sm:text-lg text-slate-300">
19+
Centralize course tracks, lessons, and resources for members so they can
20+
learn, practice, and grow all in one place.
21+
</p>
22+
23+
<div className="mt-4 flex flex-col items-center justify-center gap-2">
24+
<Link
25+
href="/sign-up"
26+
className="rounded-lg px-6 py-3 text-sm sm:text-base font-semibold bg-blue-500 text-white shadow-md hover:bg-blue-600"
27+
>
28+
Get Started
29+
</Link>
30+
31+
<Link
32+
href="/sign-in"
33+
className="text-sm sm:text-base font-medium text-slate-400 underline-offset-4 hover:underline"
34+
>
35+
Already have an account? Sign in
36+
</Link>
37+
</div>
38+
</section>
639
</div>
740
);
8-
}
41+
}

0 commit comments

Comments
 (0)