Improve index.astro by adding a missing closing tag for the <Image> element and updating CSS imports.

This commit is contained in:
Patrick Alvin Alcala 2025-06-04 12:17:38 +08:00
parent 87b5462471
commit 982bf1f262

View file

@ -26,18 +26,18 @@ import { Image } from 'astro:assets'
<style lang="sass">
@use '/src/assets/css/viewport.sass' as view
@use '/src/assets/css/variables.sass' as vars
.page
display: flex
flex-direction: column
font-family: 'Inter', sans-serif
margin-top: 2rem
.title--section
display: flex
flex-direction: column
align-items: flex-start
color: #ffffff
color: vars.$textColor
padding: 0 2rem
@media screen and (max-width: view.$tablet)
@ -80,7 +80,6 @@ import { Image } from 'astro:assets'
.cards--section
display: flex
flex-direction: row
// align-items: center
flex-wrap: wrap
justify-content: center
gap: 1rem