Skip to content

Commit

Permalink
Merge pull request #57 from MikeCheek/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
MikeCheek authored Aug 1, 2024
2 parents fc382bb + e882e25 commit a2b0a9b
Show file tree
Hide file tree
Showing 13 changed files with 78 additions and 38 deletions.
10 changes: 5 additions & 5 deletions src/components/atoms/Banner/index.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@

> * {
max-width: 90vw;
@media screen and (min-width: '768px') {
max-width: 40vw;
}
// @media screen and (min-width: '768px') {
// max-width: 40vw;
// }
}

svg {
Expand All @@ -37,10 +37,10 @@

// :nth-child(2) {
:nth-child(1) {
font-size: 40px;
font-size: 20px;
margin: 10px 0;
@media screen and (min-width: '768px') {
font-size: 50px;
font-size: 30px;
margin: initial;
}
}
Expand Down
61 changes: 42 additions & 19 deletions src/components/atoms/Partners/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,29 @@ const Index = () => {
width={250}
/>
</ShowOnView>
<Heading text="Main Sponsor" />
<ShowOnView className={styles.wrap}>
<a href="" title="EDEALAB" rel="noopener noreferrer" target="_blank">
<StaticImage
layout="constrained"
src="../../../images/partners/edealab.jpg"
className={styles.logo}
alt="EDEALAB"
width={150}
/>
</a>
</ShowOnView>
<ShowOnView className={styles.wrap}>
<a href="" title="Tourismotion" rel="noopener noreferrer" target="_blank">
<StaticImage
layout="constrained"
src="../../../images/partners/tourismotion.png"
className={styles.logoLong}
alt="Tourismotion"
width={350}
/>
</a>
</ShowOnView>
<Heading text="Location Partner" />
<ShowOnView className={styles.wrap}>
<a href="https://podus.it/" title="Podus" rel="noopener noreferrer" target="_blank">
Expand Down Expand Up @@ -122,29 +145,15 @@ const Index = () => {
<IBM className={styles.logoHorizontal} height={40} />
</a>
</ShowOnView>
<Heading text="Mobility Partner" />
<ShowOnView className={styles.wrap}>
<a href="https://marinobus.it/" title="Marino Bus" rel="noopener noreferrer" target="_blank">
{/* <MarinoBus className={styles.logoLong} width={200} style={{ maxHeight: '100px' }} /> */}
<StaticImage
layout="constrained"
src="../../../images/partners/marino-bus.png"
className={styles.logoLong}
width={200}
style={{ maxHeight: '100px' }}
alt="MarinoBus"
/>
</a>
</ShowOnView>
<Heading text="Sponsor" />
<ShowOnView className={styles.wrap}>
<a href="" title="EDEALAB" rel="noopener noreferrer" target="_blank">
<a href="" title="Basilicata Creativa" rel="noopener noreferrer" target="_blank">
<StaticImage
layout="constrained"
src="../../../images/partners/edealab.jpg"
className={styles.logo}
alt="EDEALAB"
width={150}
src="../../../images/partners/basilicata_creativa.png"
className={styles.logoLongBig}
alt="Basilicata Creativa"
width={450}
/>
</a>
<a href="" title="Verre Gioielli" rel="noopener noreferrer" target="_blank">
Expand All @@ -157,6 +166,20 @@ const Index = () => {
/>
</a>
</ShowOnView>
<Heading text="Mobility Partner" />
<ShowOnView className={styles.wrap}>
<a href="https://marinobus.it/" title="Marino Bus" rel="noopener noreferrer" target="_blank">
{/* <MarinoBus className={styles.logoLong} width={200} style={{ maxHeight: '100px' }} /> */}
<StaticImage
layout="constrained"
src="../../../images/partners/marino-bus.png"
className={styles.logoLong}
width={200}
style={{ maxHeight: '100px' }}
alt="MarinoBus"
/>
</a>
</ShowOnView>
{/* <Heading text="Hospitality Partner" /> */}
<Heading text="Community Partner" />
<ShowOnView className={styles.wrap}>
Expand Down
Binary file modified src/images/guests/music/sfinge_sound.jpg
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/images/partners/basilicata_creativa.png
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/images/partners/sfinge_sound.png
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/images/partners/tourismotion.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: 3 additions & 1 deletion src/pages/chi-siamo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ const ChiSiamo = () => {
};

export const Head = ({ data, pageContext }: HeadProps) => {
const t = (key: string) => JSON.parse((data as any).locales.edges[1].node.data)[key] ?? key;
const edges: Array<{ node: { data: string } }> = (data as any).locales.edges;
const json = edges.map((e) => JSON.parse(e.node.data)).reduce((acc, curr) => ({ ...acc, ...curr }));
const t = (key: string) => json[key] ?? key;
const images = syskrackImages().allFile!.edges.map(
(image) => image.node.childImageSharp.gatsbyImageData.images.fallback.src
);
Expand Down
4 changes: 3 additions & 1 deletion src/pages/contattaci.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ const Contattaci = () => {
export default Contattaci;

export const Head = ({ location, data, pageContext }: HeadProps) => {
const t = (key: string) => JSON.parse((data as any).locales.edges[1].node.data)[key] ?? key;
const edges: Array<{ node: { data: string } }> = (data as any).locales.edges;
const json = edges.map((e) => JSON.parse(e.node.data)).reduce((acc, curr) => ({ ...acc, ...curr }));
const t = (key: string) => json[key] ?? key;

return (
<Seo
Expand Down
4 changes: 3 additions & 1 deletion src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ const IndexPage = () => {
};

export const Head = ({ data, pageContext }: HeadProps) => {
const t = (key: string) => JSON.parse((data as any).locales.edges[1].node.data)[key] ?? key;
const edges: Array<{ node: { data: string } }> = (data as any).locales.edges;
const json = edges.map((e) => JSON.parse(e.node.data)).reduce((acc, curr) => ({ ...acc, ...curr }));
const t = (key: string) => json[key] ?? key;

return (
<Seo
Expand Down
4 changes: 3 additions & 1 deletion src/pages/info.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ const Info = () => {
};

export const Head = ({ data, pageContext }: HeadProps) => {
const t = (key: string) => JSON.parse((data as any).locales.edges[1].node.data)[key] ?? key;
const edges: Array<{ node: { data: string } }> = (data as any).locales.edges;
const json = edges.map((e) => JSON.parse(e.node.data)).reduce((acc, curr) => ({ ...acc, ...curr }));
const t = (key: string) => json[key] ?? key;
return (
<Seo
lang={(pageContext as any).language}
Expand Down
4 changes: 3 additions & 1 deletion src/pages/partner.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ const Partner = () => {
};

export const Head = ({ data, pageContext }: HeadProps) => {
const t = (key: string) => JSON.parse((data as any).locales.edges[1].node.data)[key] ?? key;
const edges: Array<{ node: { data: string } }> = (data as any).locales.edges;
const json = edges.map((e) => JSON.parse(e.node.data)).reduce((acc, curr) => ({ ...acc, ...curr }));
const t = (key: string) => json[key] ?? key;

return (
<Seo
Expand Down
4 changes: 3 additions & 1 deletion src/pages/programma.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ const Programma = () => {
};

export const Head = ({ data, pageContext }: HeadProps) => {
const t = (key: string) => JSON.parse((data as any).locales.edges[1].node.data)[key] ?? key;
const edges: Array<{ node: { data: string } }> = (data as any).locales.edges;
const json = edges.map((e) => JSON.parse(e.node.data)).reduce((acc, curr) => ({ ...acc, ...curr }));
const t = (key: string) => json[key] ?? key;

return <Seo title={t('SEOTitle')} pathname="/programma/" description={t('SEODescription')} structuredData />;
};
Expand Down
21 changes: 13 additions & 8 deletions src/utilities/guests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -302,15 +302,19 @@ const guests = [
// },
{
name: 'SFINGE SOUND',
description: `SFINGE è un progetto Tosco-Lucano nato a Pisa nel corso del 2022. Come prima parte di questo
progetto il gruppo si è focalizzato sulla costruzione di un Sound System e sulla strutturazione di
una collezione di vinili che ricopre un'ampia gamma di stili, dalla Roots alla Dub più
contemporanea, muovendo così i loro primi passi nel mondo della musica.
In occasione del festival Naturalmente Tecnologici il gruppo proporrà varie sessioni musicali
durante le quali intratterrà e farà ballare con dischi dello scenario nazionale e internazionale: dalla
Jamaica alla UK, dalla Francia alle produzioni più nostrane. Il tutto amplificato fedelmente dal loro
Sound System nel Botanical Stage del festival.`,
description: `SFINGE è un progetto tosco-lucano nato a Pisa nel corso del 2023 con l'obbiettivo di prendere parte e sostenere la scena ricreativa e culturale locale. In questo primo anno di attività il gruppo ha preso parte ad eventi di intrattenimento indipendenti e popolari iniziando a collaborare con locali, collettivi universitari e realtà di quartiere.
A livello musicale il progetto si è fino ad ora focalizzato su due aspetti principali. Il primo è stato la costruzione di un impianto hifi, realizzato integrando casse di risonanze provenienti da varie correnti, sia da quella più classica della musica giamaicana, sia dalle più recenti tendenze nella progettazione e sperimentazione audio.
Il secondo aspetto riguarda la strutturazione di una selezione musicale in vinile di vari stile della musica reggae, dalla roots alla dub più contemporanea da riprodurre sull'impianto nel classico stile “one by one” con la consueta presenza di delay, echi e sirene analogiche.
In occasione del festival Naturalmente Tecnologici il gruppo proporrà due sessioni principali, una pomeridiana ed una serale, durante le quali intratterrà e farà ballare con dischi dello scenario nazionale e internazionale: dalla Jamaica alla UK, dalla Francia alle produzioni più nostrane.`,
type: GUEST_TYPE.MUSIC,
imagePosition: 'center center',
},
// {
// name: 'Shark Emcee',
Expand Down Expand Up @@ -608,6 +612,7 @@ Vogliamo intraprendere un percorso condiviso di scoperta e rivendicazione della
{
name: 'Atomico',
imagePosition: 'center center',
description: `Atomico è una rete aperta di persone che hanno deciso di immaginare e vivere il margine come spazio di possibilità, creando sinergie, prendendosi cura dei territori attraverso pratiche artistiche, culturali e sociali.`,
type: GUEST_TYPE.COMMUNITY,
},
] as const;
Expand Down

0 comments on commit a2b0a9b

Please sign in to comment.