1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
import ImageGalleryGrid from "../components/ImageGalleryGrid";
export default function HomePage() {
return (
<>
<title>߸ hi</title>
<h1>Hi, <span className="text-blue-500 dark:text-purple-500">I'm Leander.</span></h1>
<p className="leading-relaxed mb-6">
I have a passion for hardware and software, studying computer science. Currently building own 3d printing projects and learning nix.
</p>
<ImageGalleryGrid
images={[
{ src: "/images/3ds.webp", alt: "Nintendo 3DS", id: 1 },
{ src: "/images/esp32.webp", alt: "ESP 32", id: 2 },
{ src: "/images/rice.webp", alt: "Linux rice", id: 3 },
{ src: "/images/setup.webp", alt: "Setup", id: 4 },
{ src: "/images/luigimansion.webp", alt: "Luigi Mansion", id: 5 },
{ src: "/images/ocarinaoftime.webp", alt: "Ocarina of Time", id: 6 },
{ src: "/images/hellsparadise.webp", alt: "Hells paradise", id: 7 }
]}
/>
<p className="mb-4">A few things I'm interrested in:</p>
<ul className="list-disc pl-6 space-y-1">
<li>Digital minimalism</li>
<li>*nix systems</li>
<li>3D printing</li>
<li>Homelab / self-hosting</li>
<li>Seinen manga</li>
</ul>
</>
);
}
|