Skip to content

Commit f8ed750

Browse files
Uplift (#15)
* chore: update packages * chore: fix prefetch breaking change * chore: fix hydration issue * feat: made the home page cool' * feat: added a bunch of cool gifs and stuff * feat: styling
1 parent 841d90b commit f8ed750

File tree

12 files changed

+2341
-1894
lines changed

12 files changed

+2341
-1894
lines changed

astro.config.mjs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,6 @@ import tailwind from "@astrojs/tailwind";
1111
// https://astro.build/config
1212
import partytown from "@astrojs/partytown";
1313

14-
// https://astro.build/config
15-
import prefetch from "@astrojs/prefetch";
16-
1714
// https://astro.build/config
1815
import vercel from "@astrojs/vercel/static";
1916

@@ -28,10 +25,10 @@ export default defineConfig({
2825
react(),
2926
tailwind(),
3027
partytown(),
31-
prefetch(),
3228
],
3329
output: "static",
3430
adapter: vercel({
3531
analytics: true,
3632
}),
33+
prefetch: true
3734
});

package.json

Lines changed: 24 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -12,32 +12,31 @@
1212
"astro": "astro"
1313
},
1414
"dependencies": {
15-
"@astrojs/mdx": "^0.17.2",
16-
"@astrojs/partytown": "^1.1.1",
17-
"@astrojs/prefetch": "^0.2.1",
18-
"@astrojs/react": "^2.0.2",
19-
"@astrojs/rss": "^2.1.1",
20-
"@astrojs/sitemap": "^1.1.0",
21-
"@astrojs/tailwind": "^3.0.1",
22-
"@astrojs/vercel": "^3.2.1",
23-
"@fontsource/inter": "^4.5.15",
24-
"@fontsource/jetbrains-mono": "^4.5.12",
25-
"@phosphor-icons/react": "^2.0.6",
26-
"@types/react": "^18.0.21",
27-
"@types/react-dom": "^18.0.6",
28-
"astro": "^2.1.6",
29-
"react": "^18.0.0",
30-
"react-dom": "^18.0.0",
31-
"tailwindcss": "^3.0.24"
15+
"@astrojs/mdx": "^2.0.6",
16+
"@astrojs/partytown": "^2.0.4",
17+
"@astrojs/react": "^3.0.9",
18+
"@astrojs/rss": "^4.0.3",
19+
"@astrojs/sitemap": "^3.0.5",
20+
"@astrojs/tailwind": "^5.1.0",
21+
"@astrojs/vercel": "^7.0.1",
22+
"@fontsource/inter": "^5.0.16",
23+
"@fontsource/jetbrains-mono": "^5.0.18",
24+
"@phosphor-icons/react": "^2.0.15",
25+
"@types/react": "^18.2.48",
26+
"@types/react-dom": "^18.2.18",
27+
"astro": "^4.2.3",
28+
"react": "^18.2.0",
29+
"react-dom": "^18.2.0",
30+
"tailwindcss": "^3.4.1"
3231
},
3332
"devDependencies": {
34-
"@radix-ui/colors": "^0.1.8",
35-
"@tailwindcss/typography": "^0.5.9",
36-
"prettier": "^2.8.4",
37-
"prettier-plugin-astro": "^0.8.0",
38-
"prettier-plugin-organize-imports": "^3.2.2",
39-
"prettier-plugin-tailwindcss": "^0.2.4",
40-
"windy-radix-palette": "^0.5.0",
41-
"windy-radix-typography": "^0.1.0"
33+
"@radix-ui/colors": "^3.0.0",
34+
"@tailwindcss/typography": "^0.5.10",
35+
"prettier": "^3.2.4",
36+
"prettier-plugin-astro": "^0.13.0",
37+
"prettier-plugin-organize-imports": "^3.2.4",
38+
"prettier-plugin-tailwindcss": "^0.5.11",
39+
"windy-radix-palette": "2.0.0-beta.7",
40+
"windy-radix-typography": "1.0.0-beta.0"
4241
}
4342
}

0 commit comments

Comments
 (0)