-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from gpul-org/new-sponsor-index
New sponsor index
- Loading branch information
Showing
6 changed files
with
62 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
--- | ||
import gradiantLogo from '~/assets/images/gradiant.png'; | ||
import bizawayLogo from '~/assets/images/bizaway.svg'; | ||
import codeeLogo from '~/assets/images/codee.png'; | ||
import { Image } from 'astro:assets'; | ||
import Layout from '~/layouts/PageLayout.astro'; | ||
import Headline from '~/components/blog/Headline.astro'; | ||
export const goldSponsors = [ | ||
{ | ||
name: 'Codee', | ||
href: 'codee', | ||
description: 'Codee es una empresa DeepTech de A Coruña pionera en una innovación...', | ||
image: codeeLogo, | ||
}, | ||
{ | ||
name: 'BizAway', | ||
href: 'bizaway', | ||
description: 'BizAway es una agencia de viajes de negocios con sedes en España...', | ||
image: bizawayLogo, | ||
}, | ||
{ | ||
name: 'Gradiant', | ||
href: 'gradiant', | ||
description: 'Gradiant es un centro tecnológico privado que aporta su expertise en tecnologías de...', | ||
image: gradiantLogo, | ||
}, | ||
]; | ||
--- | ||
|
||
<Layout metadata={{ title: 'Patrocinadores' }}> | ||
<div class="mt-10 -mb-5"> | ||
<Headline title="Patrocinadores" /> | ||
</div> | ||
<div class="text-center font-semibold text-3xl mb-5">🥇 Oro</div> | ||
<div class="max-w-screen-md mx-auto grid grid-cols-2 gap-10 mb-10"> | ||
{ | ||
goldSponsors.map((c) => { | ||
return ( | ||
<a href={`/patrocinadores/${c.href}`} class=""> | ||
<div class="border rounded-lg mx-2 flex flex-col align-middle text-center justify-center h-[120px] hover:bg-slate-50 transition-colors"> | ||
<Image | ||
src={c.image} | ||
alt={`${c.name} Image`} | ||
width={200} | ||
style="box-shadow: none !important" | ||
class:list={'mx-auto'} | ||
/> | ||
</div> | ||
</a> | ||
); | ||
}) | ||
} | ||
</div> | ||
<div class="text-center font-semibold text-3xl mb-5">🥈 Plata</div> | ||
<div class="text-center font-semibold text-3xl mb-5">🥉 Bronce</div> | ||
</Layout> |
This file was deleted.
Oops, something went wrong.