diff --git a/astro.config.ts b/astro.config.ts index 291ae1e..8e4b9ec 100644 --- a/astro.config.ts +++ b/astro.config.ts @@ -38,15 +38,11 @@ export default defineConfig({ workbox: { globDirectory: 'dist/client', globPatterns: [ - '**/*.{woff2}', - 'img/working_on/*.webp', - 'pizarra.webp', - 'img/this_is_fine.webp', - 'movies/bitwise_liminal_compressed_240p.webm', - '_astro/*.module.*.js', - '_astro/client.*.js', - '_astro/hoisted.*.js', - '_astro/*icons.*.js' + // '**/*.{woff2}', + // '_astro/*.module.*.js', + // '_astro/client.*.js', + // '_astro/hoisted.*.js', + // '_astro/*icons.*.js' ], // Don't fallback on document based (e.g. `/some-page`) requests // This removes an errant console.log message from showing up. diff --git a/package.json b/package.json index cb0946d..95029d2 100644 --- a/package.json +++ b/package.json @@ -39,6 +39,8 @@ }, "type": "module", "devDependencies": { + "@fontsource/calistoga": "^5.0.19", + "@fontsource/fira-sans": "^5.0.19", "@midudev/tailwind-animations": "^0.0.7", "@typescript-eslint/eslint-plugin": "latest", "@typescript-eslint/parser": "latest", diff --git a/public/img/desktop.webp b/public/img/desktop.webp new file mode 100644 index 0000000..cc5c38d Binary files /dev/null and b/public/img/desktop.webp differ diff --git a/public/songs/strad.mp3 b/public/songs/strad.mp3 new file mode 100644 index 0000000..04830eb Binary files /dev/null and b/public/songs/strad.mp3 differ diff --git a/src/components/blog/blog-about.astro b/src/components/blog/blog-about.astro index 384fc58..050e8cc 100644 --- a/src/components/blog/blog-about.astro +++ b/src/components/blog/blog-about.astro @@ -5,13 +5,13 @@ const ABOUT_STYLES = [ 'bg-slate-300/70', 'dark:bg-slate-900/90', 'dark:text-slate-300', - 'rounded-sm', + 'rounded-[10px]', 'flex', 'items-center', 'justify-center', 'font-bold', 'text-black', - 'font-rubik-doodle', + 'font-primary', 'w-full', 'xl:h-full', 'transition-all', diff --git a/src/components/blog/last-entries.tsx b/src/components/blog/last-entries.tsx index 7c9e7ed..5a73cfd 100644 --- a/src/components/blog/last-entries.tsx +++ b/src/components/blog/last-entries.tsx @@ -4,12 +4,12 @@ const LAST_ENTRIES_STYLES = [ 'bg-slate-300/80', 'dark:bg-slate-900/90', 'dark:text-slate-300', - 'rounded-sm', + 'rounded-[10px]', 'flex', 'flex-col', 'p-2', 'font-bold', - 'font-rubik-doodle', + 'font-primary', 'w-full', 'h-full', 'transition-all', @@ -19,7 +19,8 @@ const LAST_ENTRIES_STYLES = [ 'text-slate-900', 'dark:text-slate-300', 'py-4', - 'px-2' + 'px-2', + 'min-h-[25rem]' ].join(' ') import { entries } from '@data/blog.json' @@ -85,7 +86,7 @@ export default function LastEntries({ lang = 'en' }: { lang?: string }) {

- {lang === 'en' ? 'Last Entries' : 'Últimas Entradas'} -

-