Skip to content

Commit

Permalink
Merge pull request #4 from gpul-org/sponsor-2
Browse files Browse the repository at this point in the history
add sponsor 2
  • Loading branch information
siyunesweek authored Jan 11, 2024
2 parents d8161d2 + 0d700df commit 5eadf98
Show file tree
Hide file tree
Showing 5 changed files with 68 additions and 6 deletions.
22 changes: 22 additions & 0 deletions src/assets/images/bizaway.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 4 additions & 4 deletions src/components/widgets/Brands.astro
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ const {
oro.map(
(image) =>
image.src && (
<div class="flex flex-col justify-center col-span-1 my-2 lg:my-4 py-1 px-3 rounded-md dark:bg-gray-200 grayscale hover:grayscale-0">
{ image.href ? <a href={image.href} target="_blank">
<div class="flex flex-col justify-center col-span-1 my-2 lg:my-4 py-1 px-3 rounded-md dark:bg-gray-200">
{ image.href ? <a href={image.href} target="_blank" class="grayscale hover:grayscale-0">
<Image src={image.src} alt={image.alt || ''} height={image.height || 200} width={image.width || 200} />
</a> : <Image src={image.src} alt={image.alt || ''} height={image.height || 200} width={image.width || 200} /> }
</div>
Expand All @@ -45,7 +45,7 @@ const {
(image) =>
image.src && (
<div class="flex flex-col justify-center col-span-1 my-2 lg:my-4 py-1 px-3 rounded-md dark:bg-gray-200">
{ image.href ? <a href={image.href} target="_blank">
{ image.href ? <a href={image.href} target="_blank" class="grayscale hover:grayscale-0">
<Image src={image.src} alt={image.alt || ''} height={image.height || 200} width={image.width || 200} />
</a> : <Image src={image.src} alt={image.alt || ''} height={image.height || 200} width={image.width || 200} /> }
</div>
Expand All @@ -61,7 +61,7 @@ const {
(image) =>
image.src && (
<div class="flex flex-col justify-center col-span-1 my-2 lg:my-4 py-1 px-3 rounded-md dark:bg-gray-200">
{ image.href ? <a href={image.href}>
{ image.href ? <a href={image.href} class="grayscale hover:grayscale-0">
<Image src={image.src} alt={image.alt || ''} height={image.height || 200} width={image.width || 200} />
</a> : <Image src={image.src} alt={image.alt || ''} height={image.height || 200} width={image.width || 200} /> }
</div>
Expand Down
32 changes: 30 additions & 2 deletions src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import { getPermalink } from '~/utils/permalinks';
import proximamenteImage from '~/assets/images/proximamente.jpeg';
import codee from '~/assets/images/codee.png';
import bizaway from '~/assets/images/bizaway.svg';
import logoFIC from '~/assets/images/fic.svg';
import logoUDC from '~/assets/images/udc.svg';
import logoAmtega from '~/assets/images/amtega.svg';
Expand Down Expand Up @@ -108,8 +109,9 @@ oro={[
href: 'https://codee.com/'
},
{
src: proximamenteImage,
alt: 'Próximamente',
src: bizaway,
alt: 'BizAway',
href: 'https://bizaway.com/es'
},
{
src: proximamenteImage,
Expand Down Expand Up @@ -146,6 +148,32 @@ plata={[
height: 120,
},
]}
bronce={[
{
src: proximamenteImage,
alt: 'Próximamente',
width: 80,
height: 80,
},
{
src: proximamenteImage,
alt: 'Próximamente',
width: 80,
height: 80,
},
{
src: proximamenteImage,
alt: 'Próximamente',
width: 80,
height: 80,
},
{
src: proximamenteImage,
alt: 'Próximamente',
width: 80,
height: 80,
},
]}
colaboradores={[
{
src: logoFIC,
Expand Down
6 changes: 6 additions & 0 deletions src/pages/patrocinadores/codee.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
title: 'Codee'
layout: '~/layouts/MarkdownLayout.astro'
---

Codee es una empresa DeepTech de A Coruña pionera en una innovación revolucionaria en el espacio del análisis de código al introducir 'Rendimiento' como una categoría novedosa, expandiendo y mejorando así el panorama existente de Calidad, Seguridad y Cumplimiento en la revisión e inspección de códigos.
6 changes: 6 additions & 0 deletions src/pages/patrocinadores/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
title: 'Patrocinadores'
layout: '~/layouts/MarkdownLayout.astro'
---

[Codee](/patrocinadores/codee)

0 comments on commit 5eadf98

Please sign in to comment.