Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

💬 add more info in sponsor-section #42

Merged
merged 4 commits into from
Sep 14, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 38 additions & 4 deletions src/i18n/translations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,25 @@ export const no = {
"gir sponsorer muligheten til å nå en bred målgruppe som inkluderer studenter og etablerte utviklere innen bransjen, under Bergen Open Source-konferansen. Vi ønsker selvsagt å gjøre konferansedagen enda mer minneverdig for dem! Dette kan inkludere alt i fra en kort presentasjon av selskapet til tilpassede logo-merkede sokker og godbiter. (Kanskje til og med noen overraskelser som gleder deltakerne🎫🍺?)",
"sponsors.contact1": "Ønsker du også å støtte konferansen som sponsor?",
"sponsors.contact2": "Ta kontakt med Sindre på 📨: ",
"sponsors.contact3":
"Vennligst merk at vi har et begrenset antall plasser tilgjengelig for lyntaler.",
"sponsors.price":"Vi har en sponsorpakke til 5000,- som inneholder følgende ting: ",
"sponsors.goods":[
{
"item":"Vår takknemlighet via SoMe innlegg",
},
{
"item":"Logo på nettside",
},
{
"item":"Roll-up banner på konferanse (sponsor må stille med egen)",
},
{
"item":"Bruke BOSkonf logo selv",
},
{
"item":"Jobbutlysninger kan bli nevnt i introduksjon og avslutning av konferansen (høyst relevant for både studenter og deltakere allerede i jobb)",
},
],
mathiash98 marked this conversation as resolved.
Show resolved Hide resolved
"sponsors.highest": "I tillegg vil høyeste spons få et eget tidsrom for lynpresentasjon fra deres eget selskap (må være relatert til Open Source)."
};
export const en: typeof no = {
"header.home": "Home",
Expand Down Expand Up @@ -63,6 +80,23 @@ export const en: typeof no = {
"sponsors.contact1":
"Do you also want to support the conference as a sponsor?",
"sponsors.contact2": "Contact Sindre at 📨: ",
"sponsors.contact3":
"Please note that we have a limited number of spots available for lightning talks.",
"sponsors.price": "We have a sponsor package for 5000,- which includes the following items:",
"sponsors.goods": [
{
"item": "Our gratitude via SoMe posts"
},
{
"item": "Logo on website"
},
{
"item": "Roll-up banner at the conference (sponsor must provide their own)"
},
{
"item": "Use of BOSkonf logo themselves"
},
{
"item": "Job postings can be mentioned in the introduction and conclusion of the conference (highly relevant for both students and participants already in jobs)"
}
],
"sponsors.highest": "In addition, the highest sponsor will get a dedicated time slot for a lightning presentation from their company (must be related to Open Source)."
};
22 changes: 18 additions & 4 deletions src/pages/sponsor.astro
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
import Layout from "../layouts/Layout.astro";
import { useTranslation } from "../i18n/utils";
const t = useTranslation(Astro.url);
const goods = t("sponsors.goods");
---

<Layout title="Bergen Open Source-konferanse">
Expand All @@ -18,14 +19,23 @@ const t = useTranslation(Astro.url);
class="heroTxt">friByte</a
>
{t("sponsors.become")}
<p>{t("sponsors.contact1")}</p>
<p>
{t("sponsors.contact1")}
{t("sponsors.contact2")}<a
href="mailto:[email protected]"
class="heroTxt">[email protected]</a
>
</p>
<p>{t("sponsors.contact3")}</p>
<p>{t("sponsors.price")}</p>
<div>
{
goods.map((item: any, index: any) => (
<ul key={index}>
<li>{item.item}</li>
</ul>
))
}
</div>
</p>
</div>
</div>
Expand All @@ -36,7 +46,7 @@ const t = useTranslation(Astro.url);
<style>
.content {
color: #f1f1f1;
padding: 5rem 2rem;
padding: 1rem 2rem;
max-width: var(--content-width);
margin: 0 auto;
}
Expand All @@ -45,13 +55,17 @@ const t = useTranslation(Astro.url);
width: 100%;

p {
font-size: 1.75rem;
font-size: 1.2rem;
font-weight: 300;
}
a {
width: max-content;
margin: 6rem 0 0 0;
}
ul li {
margin-left: 2rem;
list-style-type: disc;
}
}
.txtCont .heroTxt {
color: #12e8be;
Expand Down
Loading