blob: 057842db4e70b98278038910e1593cefcbeb02ed (
plain)
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
37
38
39
40
41
|
import { ToolsGrid } from "@/components/tools-grid";
import { ProjectsGrid } from "@/components/projects-grid";
import { PostCard } from "@/components/post-card";
import { compareDesc } from 'date-fns'
import { allPosts } from 'contentlayer/generated'
import MapWrapper from "@/components/map-wrapper";
export default function Home() {
const posts = allPosts.sort((a, b) => compareDesc(new Date(a.date), new Date(b.date)))
return (
<>
<div className="w-full relative z-0">
<MapWrapper />
</div>
<section className="text-center space-y-2 -mt-8 relative z-10 pointer-events-none mb-12">
<div className="pointer-events-auto">
<h2 className="text-2xl font-bold mix-blend-luminosity text-foreground">Hi, I'm Leander.</h2>
<p className="text-muted-foreground/60 max-w-lg mx-auto">
Passionate about hardware & software, pursuing computer science studies. Currently building 3D-printing projects and exploring homelabing.
</p>
</div>
</section>
<section className="mt-8 mx-auto w-full">
<ToolsGrid />
</section>
<section className="mt-8 mx-auto w-full">
<ProjectsGrid />
</section>
<section className="mt-8 mx-auto w-full">
{posts.map((post, idx) => (
<PostCard key={idx} {...post} />
))}
</section>
</>
);
}
|