diff --git a/astro.config.ts b/astro.config.ts index d498ae3..cbd2e19 100644 --- a/astro.config.ts +++ b/astro.config.ts @@ -36,14 +36,17 @@ export default defineConfig({ workbox: { globDirectory: 'dist/client', globPatterns: [ - // '**/*.{woff2}', + '_astro/*.{woff2}', // '_astro/*.module.*.js', // '_astro/client.*.js', // '_astro/hoisted.*.js', // '_astro/*icons.*.js', // '_astro/preload-helper.*.js', - // '_astro/workbox-*.js' - '**/*' + // '_astro/workbox-*.js', + // '_astro/sw.js', + // '_astro/jsxRuntime.module.*.js', + '_astro/*.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/public/img/compressed_noise.gif b/public/img/compressed_noise.gif deleted file mode 100644 index f960f34..0000000 Binary files a/public/img/compressed_noise.gif and /dev/null differ diff --git a/public/img/noise.webm b/public/img/noise.webm deleted file mode 100644 index 08b0ae5..0000000 Binary files a/public/img/noise.webm and /dev/null differ diff --git a/public/img/resized_noise.gif b/public/img/resized_noise.gif deleted file mode 100644 index 157efac..0000000 Binary files a/public/img/resized_noise.gif and /dev/null differ diff --git a/src/components/head/seo.astro b/src/components/head/seo.astro index d106192..df39aab 100644 --- a/src/components/head/seo.astro +++ b/src/components/head/seo.astro @@ -1,17 +1,22 @@ --- import { SEO } from 'astro-seo' import RichResults from './richResults.astro' + +const url = Astro.url +const isInDeno = url.toString().includes('.deno.dev') --- - + - - + + @@ -114,8 +119,8 @@ import RichResults from './richResults.astro' } > = [ - { - es: '¡Hola 👋! Soy Jamer José, un Ingeniero Matemático de 24 años egresado de la Universidad EAFIT. Me encuentro actualmente en proceso de construcción de mi experiencia como Desarrollador Backend de tiempo parcial en Dium, donde estoy aprendiendo y desarrollando mis habilidades en el apasionante mundo del desarrollo backend.', - en: 'Hi there 👋! I am Jamer José, a 24-year-old Mathematical Engineer graduated from Universidad EAFIT. I am currently in the process of building my experience as a part-time Backend Developer at Dium, where I am learning and developing my skills in the exciting world of backend development.' - }, - { - es: 'Fiel a la frase «la mejor (y única) forma de lograr algo es comenzándolo», me encuentro en constante búsqueda de nuevos retos y oportunidades que me permitan ampliar mis conocimientos y habilidades en el área de la programación.', - en: 'True to the phrase "the best (and only) way to achieve something is to start it", I am constantly looking for new challenges and opportunities that allow me to expand my knowledge and skills in the field of programming.' - }, - { - es: 'Me apasionan los algoritmos, el código abierto y el desarrollo web en general, y considero que el aprendizaje continuo es una parte fundamental del crecimiento profesional. Además del desarrollo backend, disfruto del ajedrez y de explorar nuevas tecnologías relacionadas con el desarrollo web.', - en: 'I am passionate about algorithms, open source and web development in general, and I consider that continuous learning is a fundamental part of professional growth. In addition to backend development, I enjoy chess and exploring new technologies related to web development.' - }, - { - es: 'Soy una persona entusiasta, proactiva y con gran capacidad de aprendizaje, siempre dispuesto a asumir nuevos desafíos y contribuir de manera positiva en los proyectos en los que me involucro. ¿Te gustaría saber más sobre mí? ¡No dudes en contactarme!', - en: 'I am an enthusiastic, proactive person with a great capacity for learning, always willing to take on new challenges and contribute positively to the projects I am involved in. Would you like to know more about me? Do not hesitate to contact me!' - } -] +const firstParagraph = { + es: '¡Hola 👋! Soy Jamer José, un Ingeniero Matemático de 24 años egresado de la Universidad EAFIT. Me encuentro actualmente en proceso de construcción de mi experiencia como Desarrollador Backend de tiempo parcial en Dium, donde estoy aprendiendo y desarrollando mis habilidades en el apasionante mundo del desarrollo backend.', + en: 'Hi there 👋! I am Jamer José, a 24-year-old Mathematical Engineer graduated from Universidad EAFIT. I am currently in the process of building my experience as a part-time Backend Developer at Dium, where I am learning and developing my skills in the exciting world of backend development.' +}[lang] --- > = [ class='text-[95%] text-pretty md:w-[90%] pt-2 text-slate-900 dark:text-slate-300' id='about-me-paragraph' > - {paragraphs.at(0)![lang]} + {firstParagraph}

1/4
-