Skip to content

Commit d8ad47b

Browse files
committed
Add more stuff
1 parent 5da57ff commit d8ad47b

File tree

7 files changed

+349
-235
lines changed

7 files changed

+349
-235
lines changed

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
steps:
1717
- name: Checkout your repository using git
1818
uses: actions/checkout@v4
19-
- name: Install, build, and upload your site
19+
- name: Install, build, and upload
2020
uses: withastro/action@v3
2121
with:
2222
path: .

astro.config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import tailwindcss from "@tailwindcss/vite";
44
import { defineConfig } from "astro/config";
55

66
export default defineConfig({
7-
site: "https://debarchito.is-a.dev",
8-
base: "website",
7+
site: "https://debarchito.github.io",
8+
base: "/",
99
integrations: [svelte(), sitemap()],
1010
vite: {
1111
plugins: [tailwindcss()],

package.json

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,15 @@
1414
"@astrojs/check": "^0.9.4",
1515
"@astrojs/sitemap": "^3.3.0",
1616
"@astrojs/svelte": "^7.0.10",
17-
"@tailwindcss/vite": "^4.1.3",
18-
"astro": "^5.6.1",
19-
"daisyui": "^5.0.19",
17+
"@lucide/svelte": "^0.488.0",
18+
"@tailwindcss/vite": "^4.1.4",
19+
"astro": "^5.7.2",
20+
"daisyui": "^5.0.23",
2021
"prettier-plugin-astro": "^0.14.1",
2122
"prettier-plugin-svelte": "^3.3.3",
2223
"prettier-plugin-tailwindcss": "^0.6.11",
23-
"svelte": "^5.26.2",
24-
"tailwindcss": "^4.1.3",
24+
"svelte": "^5.27.0",
25+
"tailwindcss": "^4.1.4",
2526
"typescript": "^5.8.3"
2627
}
2728
}

pnpm-lock.yaml

Lines changed: 337 additions & 144 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/layouts/Root.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const { title } = Astro.props;
44
---
55

66
<!doctype html>
7-
<html lang="en" data-theme="dark">
7+
<html lang="en">
88
<head>
99
<meta charset="UTF-8" />
1010
<meta name="viewport" content="width=device-width" />

src/pages/index.astro

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,6 @@ import Root from "@layouts/Root.astro";
33
---
44

55
<Root title="debarchito | Home">
6-
<div class="flex min-h-screen w-full flex-col lg:flex-row">
7-
<div class="bg-gray-100 p-4 lg:w-1/5">
8-
#1
9-
</div>
10-
<div class="bg-white p-4 lg:w-4/5">
11-
#2
12-
</div>
13-
</div>
6+
Things are moving. You probably are looking for
7+
<a class="underline" href="https://debarchito.is-a.dev">d'DG</a>!
148
</Root>

src/styles/global.css

Lines changed: 0 additions & 74 deletions
Original file line numberDiff line numberDiff line change
@@ -1,76 +1,2 @@
11
@import "tailwindcss";
2-
3-
/* plugins */
42
@plugin "daisyui";
5-
6-
/* light theme inspired by catppuccin latte */
7-
@plugin "daisyui/theme" {
8-
name: "light";
9-
default: true;
10-
prefersdark: false;
11-
color-scheme: "light";
12-
--color-base-100: #eff1f5;
13-
--color-base-200: #e6e9ef;
14-
--color-base-300: #dce0e8;
15-
--color-base-content: #4c4f69;
16-
--color-primary: #8839ef;
17-
--color-primary-content: #e6e9ef;
18-
--color-secondary: #dd7878;
19-
--color-secondary-content: #e6e9ef;
20-
--color-accent: #fe640b;
21-
--color-accent-content: #e6e9ef;
22-
--color-neutral: #4c4f69;
23-
--color-neutral-content: #e6e9ef;
24-
--color-info: #04a5e5;
25-
--color-info-content: #e6e9ef;
26-
--color-success: #40a02b;
27-
--color-success-content: #e6e9ef;
28-
--color-warning: #df8e1d;
29-
--color-warning-content: #e6e9ef;
30-
--color-error: #e64553;
31-
--color-error-content: #e6e9ef;
32-
--radius-selector: 0.5rem;
33-
--radius-field: 0.5rem;
34-
--radius-box: 0.5rem;
35-
--size-selector: 0.25rem;
36-
--size-field: 0.25rem;
37-
--border: 1.5px;
38-
--depth: 1;
39-
--noise: 0;
40-
}
41-
42-
/* dark theme inspired by catppuccin mocha */
43-
@plugin "daisyui/theme" {
44-
name: "dark";
45-
default: false;
46-
prefersdark: true;
47-
color-scheme: "dark";
48-
--color-base-100: #1e1e2e;
49-
--color-base-200: #181825;
50-
--color-base-300: #11111b;
51-
--color-base-content: #cdd6f4;
52-
--color-primary: #cba6f7;
53-
--color-primary-content: #181825;
54-
--color-secondary: #f2cdcd;
55-
--color-secondary-content: #181825;
56-
--color-accent: #fab387;
57-
--color-accent-content: #181825;
58-
--color-neutral: #cdd6f4;
59-
--color-neutral-content: #181825;
60-
--color-info: #04a5e5;
61-
--color-info-content: #181825;
62-
--color-success: #a6e3a1;
63-
--color-success-content: #181825;
64-
--color-warning: #f9e2af;
65-
--color-warning-content: #181825;
66-
--color-error: #eba0ac;
67-
--color-error-content: #181825;
68-
--radius-selector: 0.5rem;
69-
--radius-field: 0.5rem;
70-
--radius-box: 0.5rem;
71-
--size-selector: 0.25rem;
72-
--size-field: 0.25rem;
73-
--border: 1.5px;
74-
--depth: 1;
75-
--noise: 0;
76-
}

0 commit comments

Comments
 (0)