@@ -6,6 +6,8 @@ import Logo from "@/public/img/logo-foxeddev.png";
66import Card from "@/components/Card" ;
77
88import { SiGithub , SiDiscord } from "react-icons/si" ;
9+ import { FaClock } from "react-icons/fa" ;
10+ import Clock from "@/components/Clock" ;
911
1012export default function Home ( ) {
1113 const now = new Date ( ) ;
@@ -18,12 +20,12 @@ export default function Home() {
1820
1921 return (
2022 < 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" >
21- < div className = "flex flex-col gap-32 bg-white/75 m-32 mt-128 p-20 w-full max-w-4xl" >
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" >
2224 < section className = "flex flex-col items-center gap-16" >
2325 < Image src = { Logo } alt = "" className = "-mt-40" > </ Image >
2426 < div className = "flex flex-col items-center gap-2 text-center" >
2527 < p className = "font-mono text-gray-500 text-4xl" > Hi, I'm</ p >
26- < h1 className = "font-extrabold text-gray-800 text-9xl" > FOXED</ h1 >
28+ < h1 className = "font-extrabold text-gray-800 text-8xl md:text- 9xl" > FOXED</ h1 >
2729 < p className = "font-mono text-gray-500 text-xl" >
2830 I'm a { now . getFullYear ( ) - 2010 } year old developer and
2931 designer from Germany.
@@ -126,6 +128,13 @@ export default function Home() {
126128 </ p >
127129 </ div >
128130 </ Card >
131+ < Card >
132+ < Clock hasSeconds showSubtext />
133+ </ Card >
134+ < Card >
135+ < FaClock size = { 48 } className = "fill-pink-400" > </ FaClock >
136+ < h3 className = "font-medium text-2xl" > More stuff coming soon!</ h3 >
137+ </ Card >
129138 </ section >
130139 </ div >
131140 </ div >
0 commit comments