Skip to content

Commit f8c51e3

Browse files
authored
Merge pull request #3 from xirf/v2
Redesign the landing page
2 parents 07efaec + d6e29ea commit f8c51e3

18 files changed

+1743
-1067
lines changed

.env.example

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
GH-APIKEY=ABC

astro.config.ts

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,20 @@
11
import { defineConfig } from 'astro/config';
2-
3-
import svelte from "@astrojs/svelte";
42
import unocss from "unocss/astro";
53

4+
import vercel from "@astrojs/vercel/serverless";
5+
import sitemap from "@astrojs/sitemap";
6+
import alpinejs from "@astrojs/alpinejs";
7+
68
// https://astro.build/config
79
export default defineConfig({
8-
integrations: [ svelte(), unocss({
9-
injectReset: true
10-
}) ],
11-
site: "https://andka.me"
10+
integrations: [
11+
alpinejs(),
12+
unocss({
13+
injectReset: true
14+
}),
15+
sitemap(),
16+
],
17+
site: "https://andka.me",
18+
output: "server",
19+
adapter: vercel()
1220
});

package.json

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,17 @@
1010
"astro": "astro"
1111
},
1212
"dependencies": {
13-
"@astrojs/svelte": "^3.1.0",
13+
"@astrojs/alpinejs": "^0.3.0",
14+
"@astrojs/sitemap": "^3.0.0",
1415
"@astrojs/ts-plugin": "^1.0.10",
15-
"animejs": "^3.2.1",
16-
"astro": "^2.8.0",
17-
"svelte": "^4.0.5"
16+
"@astrojs/vercel": "^5.0.1",
17+
"@types/alpinejs": "^3.0.0",
18+
"alpinejs": "^3.0.0",
19+
"astro": "^3.1.4"
1820
},
1921
"devDependencies": {
2022
"@iconify-json/charm": "^1.1.9",
23+
"@iconify-json/clarity": "^1.1.9",
2124
"@iconify-json/logos": "^1.1.34",
2225
"@unocss/preset-icons": "^0.55.1",
2326
"@unocss/preset-web-fonts": "^0.53.5",

0 commit comments

Comments
 (0)