Skip to content

Commit 2fe225e

Browse files
committed
Change stuff and add footer
1 parent 5316313 commit 2fe225e

File tree

1 file changed

+18
-9
lines changed

1 file changed

+18
-9
lines changed

app/page.tsx

Lines changed: 18 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -19,20 +19,24 @@ export default function Home() {
1919
}
2020

2121
return (
22-
<div className="flex flex-col justify-end items-center bg-[url(/img/background-arctic-fox.jpg)] bg-cover bg-fixed min-h-screen size-full font-sans text-gray-800 scroll-smooth">
23-
<div className="flex flex-col gap-32 bg-white/75 md:m-32 mt-128 md:mt-128 p-4 md:p-20 w-full max-w-4xl">
24-
<section className="flex flex-col items-center gap-16">
25-
<Image src={Logo} alt="" className="-mt-40"></Image>
22+
<div className="bg-[url(/img/background-arctic-fox.jpg)] bg-cover bg-fixed min-h-screen font-sans text-gray-800 scroll-smooth">
23+
<header className="flex flex-col justify-end items-center min-h-screen">
24+
<div className="flex flex-col items-center gap-16 bg-white/75 p-16 w-full max-w-4xl">
25+
<Image src={Logo} alt="" className="-mt-36"></Image>
2626
<div className="flex flex-col items-center gap-2 text-center">
2727
<p className="font-mono text-gray-500 text-4xl">Hi, I&apos;m</p>
28-
<h1 className="font-extrabold text-gray-800 text-8xl md:text-9xl">FOXED</h1>
28+
<h1 className="font-extrabold text-gray-800 text-8xl sm:text-9xl">
29+
FOXED
30+
</h1>
2931
<p className="font-mono text-gray-500 text-xl">
3032
I&apos;m a {now.getFullYear() - 2010} year old developer and
3133
designer from Germany.
3234
</p>
3335
</div>
34-
</section>
35-
<section className="gap-8 grid grid-cols-2">
36+
</div>
37+
</header>
38+
<main className="flex flex-col items-center">
39+
<div className="gap-8 grid grid-cols-2 bg-white/75 p-16 w-full max-w-4xl">
3640
<Card>
3741
<SiGithub size={48} className="fill-pink-400"></SiGithub>
3842
<h3 className="font-medium text-2xl">
@@ -135,8 +139,13 @@ export default function Home() {
135139
<FaClock size={48} className="fill-pink-400"></FaClock>
136140
<h3 className="font-medium text-2xl">More stuff coming soon!</h3>
137141
</Card>
138-
</section>
139-
</div>
142+
</div>
143+
</main>
144+
<header className="flex flex-col justify-start items-center md:min-h-64">
145+
<div className="flex flex-col items-center gap-16 bg-white/75 p-16 w-full max-w-4xl">
146+
<p className="font-mono text-gray-500">Made with 💜 by Foxed</p>
147+
</div>
148+
</header>
140149
</div>
141150
);
142151
}

0 commit comments

Comments
 (0)