Skip to content

Commit fbbe97d

Browse files
committed
Add sign in
1 parent 26a80d1 commit fbbe97d

File tree

1 file changed

+15
-6
lines changed

1 file changed

+15
-6
lines changed

app/page.tsx

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
'use client';
22

33
import ProfilePage from "@/app/profiles/page";
4+
import Link from "next/link";
45

56
export const dynamic = "force-dynamic"; // This disables SSG and ISR
67

@@ -13,6 +14,7 @@ export default function HomePage() {
1314
</main>
1415
)
1516
}
17+
const fontStyle = "transition px-6 py-4 text-4xl font-medium xs:text-xs"
1618

1719
return (
1820
<main className="min-h-screen flex flex-col">
@@ -32,13 +34,20 @@ export default function HomePage() {
3234

3335
{/* Hero Section */}
3436
<section className="flex flex-col items-center justify-center flex-1 text-center px-4">
35-
<h1 className="text-5xl md:text-6xl xs:text-4xl font-extrabold max-w-3xl leading-tight">
36-
Compass
37+
<h1 className="py-4 text-5xl md:text-6xl xs:text-4xl font-extrabold max-w-3xl leading-tight xl:whitespace-nowrap md:whitespace-nowrap ">
38+
Don't swipe. Just search.
3739
</h1>
38-
<p className="mt-6 text-lg md:text-xl text-gray-400 max-w-2xl">
39-
{"Tired of swiping? Search what you're looking for!"}
40-
</p>
41-
<div className=" w-full">
40+
{/*<p className="mt-6 text-lg md:text-xl text-gray-400 max-w-2xl">*/}
41+
{/* {"Tired of swiping? Search what you're looking for!"}*/}
42+
{/*</p>*/}
43+
44+
<div className="py-4">
45+
<Link href="/login" className={`${fontStyle} bg-blue-500 text-white rounded-lg hover:bg-blue-600`}>
46+
Sign In
47+
</Link>
48+
49+
</div>
50+
<div className=" w-full py-4">
4251
{profilePage()}
4352
</div>
4453
</section>

0 commit comments

Comments
 (0)