Skip to content

Commit ffe7cde

Browse files
committed
Refactor About component text, remove Flowbite script from BaseHead, enhance BaseLayout with Christmas snow effect, update CV page with new job details and education, clean up global CSS by removing Flowbite imports.
1 parent ac0d4f1 commit ffe7cde

9 files changed

Lines changed: 586 additions & 550 deletions

File tree

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,6 @@ pnpm-debug.log*
1919
.DS_Store
2020

2121
# Astro
22-
.astro/
22+
.astro/
23+
24+
/.idea/

astro.config.mjs

Lines changed: 31 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -12,38 +12,38 @@ import { manifest, seoConfig } from './utils/seoConfig'
1212
import tailwindcss from '@tailwindcss/vite'
1313

1414
const markdownConfig = {
15-
drafts: true,
16-
shikiConfig: {
17-
theme: 'one-dark-pro'
18-
},
19-
remarkRehype: {
20-
footnoteLabel: 'Nota al pie',
21-
footnoteBackLabel: 'Volver'
22-
}
15+
drafts: true,
16+
shikiConfig: {
17+
theme: 'one-dark-pro'
18+
},
19+
remarkRehype: {
20+
footnoteLabel: 'Nota al pie',
21+
footnoteBackLabel: 'Volver'
22+
}
2323
}
2424

2525
export default defineConfig({
26-
i18n: {
27-
defaultLocale: 'es',
28-
locales: ['es', 'en']
29-
},
30-
site: seoConfig.baseURL,
31-
markdown: markdownConfig,
32-
integrations: [sitemap(), preact(), mdx(markdownConfig)],
33-
vite: {
34-
plugins: [
35-
VitePWA({
36-
registerType: 'autoUpdate',
37-
manifest,
38-
workbox: {
39-
globDirectory: 'dist',
40-
globPatterns: [
41-
'**/*.{js,css,svg,png,jpg,jpeg,gif,webp,woff,woff2,ttf,eot,ico}'
42-
],
43-
navigateFallback: null
44-
}
45-
}),
46-
tailwindcss()
47-
]
48-
}
26+
i18n: {
27+
defaultLocale: 'es',
28+
locales: ['es', 'en']
29+
},
30+
site: seoConfig.baseURL,
31+
markdown: markdownConfig,
32+
integrations: [sitemap(), preact(), mdx(markdownConfig)],
33+
vite: {
34+
plugins: [
35+
VitePWA({
36+
registerType: 'autoUpdate',
37+
manifest,
38+
workbox: {
39+
globDirectory: 'dist',
40+
globPatterns: [
41+
'**/*.{js,css,svg,png,jpg,jpeg,gif,webp,woff,woff2,ttf,eot,ico}'
42+
],
43+
navigateFallback: null
44+
}
45+
}),
46+
tailwindcss()
47+
]
48+
}
4949
})

package.json

Lines changed: 10 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -24,21 +24,18 @@
2424
},
2525
"homepage": "https://github.com/AlexTorresDev/alextorresdev.github.io#readme",
2626
"dependencies": {
27-
"@astrojs/mdx": "4.3.1",
28-
"@astrojs/preact": "4.1.0",
29-
"@astrojs/rss": "4.0.12",
30-
"@astrojs/sitemap": "3.4.2",
31-
"@tailwindcss/vite": "4.1.11",
32-
"astro": "^5.12.6",
33-
"flowbite": "3.1.2",
34-
"preact": "10.27.0",
35-
"sharp": "0.34.3",
36-
"snarkdown": "2.0.0",
37-
"tailwindcss": "4.1.11",
38-
"vite-plugin-pwa": "1.0.2"
27+
"@astrojs/mdx": "4.3.13",
28+
"@astrojs/preact": "4.1.3",
29+
"@astrojs/rss": "4.0.14",
30+
"@astrojs/sitemap": "3.6.0",
31+
"@le-pepe/snow-effect": "^0.1.13",
32+
"@tailwindcss/vite": "4.1.18",
33+
"astro": "5.16.5",
34+
"preact": "10.28.0",
35+
"tailwindcss": "4.1.18",
36+
"vite-plugin-pwa": "1.2.0"
3937
},
4038
"devDependencies": {
41-
"flowbite-typography": "1.0.5",
4239
"standard": "17.1.2"
4340
},
4441
"eslintConfig": {

0 commit comments

Comments
 (0)