Migrate to Astro V5 (#22)

* fix video url

* update deploy script for using rsync

* remove delete from script

* translate resources page

* fix images dimensions and favicon

* add css optimization plugin and improve images

* update project dependencies

* refactor lang

* post translated to spanish

* fix metadata

* update dependencies

* update dependencies

* update dependencies

* update to Astro 5.x

* format index.astro

* Migrate content layer to Astro V5
This commit is contained in:
Juan Manzanero
2025-02-01 17:33:00 -06:00
committed by GitHub
parent 9363bf7a20
commit 4f0e80b988
46 changed files with 2265 additions and 2034 deletions

View File

@@ -3,34 +3,34 @@
@tailwind utilities;
@layer base {
* {
@apply border-border;
}
body {
@apply bg-background text-foreground;
}
[data-rehype-pretty-code-figure] {
@apply bg-[#1e1e2e] rounded-md pt-4;
}
[data-rehype-pretty-code-figure] figcaption {
@apply m-0 mb-2 px-4 pb-4 border-b-[0.5px] border-secondary;
}
[data-rehype-pretty-code-figure] pre {
@apply py-3 px-4;
}
[data-rehype-pretty-code-figure] pre > code > span {
@apply pr-4;
}
[data-rehype-pretty-code-fragment] {
@apply relative my-5 rounded-md border border-border/20 bg-[#282c34];
}
.prose code {
@apply rounded-md border border-border/20 font-normal p-0.5 bg-secondary before:content-none after:content-none;
}
.prose pre > code {
@apply bg-transparent border-none;
}
* {
scroll-margin-top: 72px;
}
* {
@apply border-border;
}
body {
@apply bg-background text-foreground;
}
[data-rehype-pretty-code-figure] {
@apply bg-[#1e1e2e] rounded-md pt-4;
}
[data-rehype-pretty-code-figure] figcaption {
@apply m-0 mb-2 px-4 pb-4 border-b-[0.5px] border-secondary;
}
[data-rehype-pretty-code-figure] pre {
@apply py-3 px-4;
}
[data-rehype-pretty-code-figure] pre > code > span {
@apply pr-4;
}
[data-rehype-pretty-code-fragment] {
@apply relative my-5 rounded-md border border-border/20 bg-[#282c34];
}
.prose code {
@apply rounded-md border border-border/20 font-normal p-0.5 bg-secondary before:content-none after:content-none;
}
.prose pre > code {
@apply bg-transparent border-none;
}
* {
scroll-margin-top: 72px;
}
}