diff --git a/public/favicon.ico b/public/favicon.ico new file mode 100644 index 0000000..27556a0 Binary files /dev/null and b/public/favicon.ico differ diff --git a/public/favicon.svg b/public/favicon.svg deleted file mode 100644 index f157bd1..0000000 --- a/public/favicon.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - diff --git a/src/layouts/section.astro b/src/layouts/section.astro index 27ae94f..b69c8d7 100644 --- a/src/layouts/section.astro +++ b/src/layouts/section.astro @@ -10,13 +10,16 @@ const { subtitle, description, image, + image_alt, className, }: { type?: SectionType; + imageAlign?: ImageAlign; title?: string; subtitle?: string; description?: string; image?: string; + image_alt?: string; height?: string; className?: string; } = Astro.props; @@ -34,7 +37,7 @@ const { ) } { - (type === "TitleOrange") && ( + type === "TitleOrange" && (
{title &&

{title.toUpperCase()}

} {subtitle && ( @@ -44,7 +47,15 @@ const { ) } - {image && } + { + image && ( + {image_alt} + ) + } { description && ( diff --git a/src/pages/index.astro b/src/pages/index.astro index 20f5f74..c4a3223 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -10,7 +10,7 @@ import Community from "../sections/Community.astro"; - + diff --git a/src/sections/Community.astro b/src/sections/Community.astro index 21e86ab..230932e 100644 --- a/src/sections/Community.astro +++ b/src/sections/Community.astro @@ -25,20 +25,25 @@ const prebuiltData = await readTOMLFiles("proyectos-comunitarios/proyectos"); } -
+

AQUÍ

PODRAS

-
+
Image 1 Image 2
@@ -64,6 +69,7 @@ const prebuiltData = await readTOMLFiles("proyectos-comunitarios/proyectos"); class="flex flex-col justify-center items-center mx-6 h-[50vh]" >