Skip to content

Commit

Permalink
Merge pull request #16 from gdgpescara/feature/netsons_lean_suredi_tr…
Browse files Browse the repository at this point in the history
…edipi

Added sponsors
  • Loading branch information
gregoriopalama authored Oct 11, 2023
2 parents 7f74815 + 1241fd2 commit 4c9e3aa
Show file tree
Hide file tree
Showing 6 changed files with 113 additions and 2 deletions.
Binary file added src/assets/sponsors/leanstartuplab.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions src/assets/sponsors/netsons.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
83 changes: 83 additions & 0 deletions src/assets/sponsors/suredi.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/sponsors/tredipi.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/components/Map.astro
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
keyboardShortcuts: false,
mapTypeControl: false,
streetViewControl: false,
mapId: "d76f275f9f57240e",
mapId: "63f164f6af1535ee",
});

const marker = new google.maps.Marker({
Expand Down Expand Up @@ -45,5 +45,5 @@
<script>
/** @ts-ignore copy/paste stuff for google */
(g=>{var h,a,k,p="The Google Maps JavaScript API",c="google",l="importLibrary",q="__ib__",m=document,b=window;b=b[c]||(b[c]={});var d=b.maps||(b.maps={}),r=new Set,e=new URLSearchParams,u=()=>h||(h=new Promise(async(f,n)=>{await (a=m.createElement("script"));e.set("libraries",[...r]+"");for(k in g)e.set(k.replace(/[A-Z]/g,t=>"_"+t[0].toLowerCase()),g[k]);e.set("callback",c+".maps."+q);a.src=`https://maps.${c}apis.com/maps/api/js?`+e;d[q]=f;a.onerror=()=>h=n(Error(p+" could not load."));a.nonce=m.querySelector("script[nonce]")?.nonce||"";m.head.append(a)}));d[l]?console.warn(p+" only loads once. Ignoring:",g):d[l]=(f,...n)=>r.add(f)&&u().then(()=>d[l](f,...n))})
({key: "AIzaSyACS8IGSJ394ipNcrl_Y-6T_q-1DpfhN88", v: "weekly"});</script>
({key: "AIzaSyBoEW632etxMi1Kl1TwyrwYRUGQRop2yf8", v: "weekly"});</script>

25 changes: 25 additions & 0 deletions src/components/Sponsors.astro
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,11 @@
import googleIconSrc from "../assets/sponsors/google.png";
import stickermuleIconSrc from "../assets/sponsors/stickermule.png";
import frontiereIconSrc from "../assets/sponsors/frontiere.svg";
import tredipiIconSrc from "../assets/sponsors/tredipi.png";
import surediIconSrc from "../assets/sponsors/suredi.svg";
import udaIconSrc from "../assets/sponsors/uda.png";
import decIconSrc from "../assets/sponsors/dec.png";
import netsonsIconSrc from "../assets/sponsors/netsons.png";
import Section from "./Section.astro";
import Sponsor from "./Sponsor.astro";
import type { ImageMetadata } from "astro";
Expand Down Expand Up @@ -44,14 +47,36 @@ const sponsors: SponsorValue[][] = [
link: "https://www.dec.unich.it/home-dec-1",
},
],
[
{
level: "Platinum sponsor",
name: "Netsons",
imageSrc: netsonsIconSrc,
link: "https://www.netsons.com/",
}
],
[
{
level: "Gold sponsor",
name: "Frontiere",
imageSrc: frontiereIconSrc,
link: "https://frontiere.io/",
},
{
level: "Gold sponsor",
name: "Tredipi",
imageSrc: tredipiIconSrc,
link: "https://www.tredipi.it/",
}
],
[
{
level: "Silver sponsor",
name: "Suredi",
imageSrc: surediIconSrc,
link: "https://www.suredi.it/",
}
]
];
---

Expand Down

0 comments on commit 4c9e3aa

Please sign in to comment.