2
2
import { getCollection } from " astro:content"
3
3
import PageLayout from " @layouts/PageLayout.astro"
4
4
import ArrowCard from " @components/ArrowCard"
5
- import StackCard from " @components/StackCard.astro"
5
+ // import StackCard from "@components/StackCard.astro"
6
6
import { SITE , SOCIALS } from " @consts"
7
7
import TwinklingStars from " @components/TwinklingStars.astro"
8
8
import MeteorShower from " @components/MeteorShower.astro"
@@ -13,33 +13,33 @@ const posts = (await getCollection("blog"))
13
13
.sort ((a , b ) => b .data .date .getTime () - a .data .date .getTime ())
14
14
.slice (0 ,3 )
15
15
16
- const projects = (await getCollection (" projects" ))
17
- .filter (project => ! project .data .draft )
18
- .sort ((a , b ) => b .data .date .getTime () - a .data .date .getTime ())
19
- .slice (0 ,3 )
16
+ // const projects = (await getCollection("projects"))
17
+ // .filter(project => !project.data.draft)
18
+ // .sort((a, b) => b.data.date.getTime() - a.data.date.getTime())
19
+ // .slice(0,3)
20
20
21
- const stack = [
22
- {
23
- text: " Astro" ,
24
- icon: " astro" ,
25
- href: " https://astro.build"
26
- },
27
- {
28
- text: " JavaScript" ,
29
- icon: " javascript" ,
30
- href: " https://www.javascript.com"
31
- },
32
- {
33
- text: " TypeScript" ,
34
- icon: " typescript" ,
35
- href: " https://www.typescriptlang.org"
36
- },
37
- {
38
- text: " Tailwind" ,
39
- icon: " tailwind" ,
40
- href: " https://tailwindcss.com"
41
- },
42
- ]
21
+ // const stack = [
22
+ // {
23
+ // text: "Astro",
24
+ // icon: "astro",
25
+ // href: "https://astro.build"
26
+ // },
27
+ // {
28
+ // text: "JavaScript",
29
+ // icon: "javascript",
30
+ // href: "https://www.javascript.com"
31
+ // },
32
+ // {
33
+ // text: "TypeScript",
34
+ // icon: "typescript",
35
+ // href: "https://www.typescriptlang.org"
36
+ // },
37
+ // {
38
+ // text: "Tailwind",
39
+ // icon: "tailwind",
40
+ // href: "https://tailwindcss.com"
41
+ // },
42
+ // ]
43
43
---
44
44
45
45
<PageLayout title =" Home" description ={ SITE .DESCRIPTION } >
0 commit comments