-
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.
- Loading branch information
Sebastian Herrmann
committed
Aug 9, 2023
1 parent
7260d21
commit 48acef2
Showing
6 changed files
with
111 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,6 +30,18 @@ | |
"title": "Ihr macht die Kultur, wir sagen allen Bescheid", | ||
"subtitle": "kulturdaten.berlin – für Kulturakteur:innen", | ||
"description": "Was? Wann? Wer? Wo? Für wen? Wie lange? Um im Web gefunden zu werden, müssen Kulturschaffende ihr Programm an vielen Stellen mühsam händisch einpflegen. Mit der Plattform kulturdaten.berlin wollen wir diesen Prozess radikal vereinfachen! \n\nDeswegen entwickeln wir gemeinsam mit Kulturakteur:innen und -institutionen die erste offene, digitale Infrastruktur für Kulturdaten in Berlin: Gefördert durch die Senatsverwaltung für Kultur und Europa entsteht zurzeit eine zentrale Datendrehscheibe, die ihre Kulturdaten strukturieren, bündeln und mit zahlreichen Portalen zielgerichtet vernetzen kann. \n\nNatürlich können nicht nur Institutionen, sondern insbesondere auch Kollektive und Solokünstler:innen ihre Profile und Angebote über kulturdaten.berlin publizieren." | ||
}, | ||
"footer": { | ||
"address-title": "Adresse", | ||
"address-content": "Technologiestiftung Berlin\nGrunewaldstr. 61-62\n10825 Berlin", | ||
"email-title": "E-Mail", | ||
"email-content": "[email protected]", | ||
"link-privacy-policy": "Datenschutzrichtlinie", | ||
"link-imprint": "Impressum", | ||
"project-by": "Ein Projekt der", | ||
"supported-by": "gefördert von", | ||
"tsb-logo-alt": "Technologiestiftung Berlin", | ||
"sen-kugz-logo-alt": "Senatsverwaltung für Kultur und Gesellschaftlichen Zusammenhalt Berlin" | ||
} | ||
} | ||
} |
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 |
---|---|---|
|
@@ -30,6 +30,18 @@ | |
"title": "You do the culture, we’ll let everyone know", | ||
"subtitle": "kulturdaten.berlin - for cultural actors", | ||
"description": "What? When? Who? Where? For whom? For how long? In order to be found on the web, cultural professionals have to painstakingly enter their programs manually in many places. With the platform kulturdaten.berlin we want to radically simplify this process! \n\nThat’s why we’re working with cultural actors and institutions to develop the first open, digital infrastructure for cultural data in Berlin. Funded by the Senate Department for Culture and Europe, we’re currently creating a central data hub that can structure and bundle cultural data and network it with numerous portals in a targeted manner. \n\nOf course, not only institutions, but also collectives and solo artists in particular can publish their profiles and offerings via kulturdaten.berlin." | ||
}, | ||
"footer": { | ||
"address-title": "Address", | ||
"address-content": "Technologiestiftung Berlin\nGrunewaldstr. 61-62\n10825 Berlin", | ||
"email-title": "E-mail", | ||
"email-content": "[email protected]", | ||
"link-privacy-policy": "Privacy policy", | ||
"link-imprint": "Imprint", | ||
"project-by": "A project by", | ||
"supported-by": "supported by", | ||
"tsb-logo-alt": "Technologiestiftung Berlin", | ||
"sen-kugz-logo-alt": "Senatsverwaltung für Kultur und Gesellschaftlichen Zusammenhalt Berlin" | ||
} | ||
} | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,83 @@ | ||
import styled from "@emotion/styled"; | ||
import { useTranslations } from "next-intl"; | ||
import { colors, fontWeights, spacings, widths } from "../../../common/styleVariables"; | ||
import Link, { LinkInternal } from "../../Link"; | ||
import Spacer from "../../Spacer"; | ||
import Section from "../Section"; | ||
|
||
const StyledFooter = styled.footer({ | ||
width: `min(100%, ${widths.maxContentWidth})`, | ||
margin: "0 auto", | ||
color: colors.blueDark, | ||
}); | ||
|
||
const InnerContainer = styled.div({ | ||
display: "flex", | ||
flexWrap: "wrap", | ||
gap: spacings.get(5), | ||
justifyContent: "space-between", | ||
}); | ||
|
||
const Address = styled.address({ | ||
flex: "0 1 40%", | ||
fontStyle: "normal", | ||
}); | ||
|
||
const Title = styled.strong({ | ||
fontWeight: fontWeights.medium, | ||
}); | ||
|
||
const Content = styled.div({ | ||
whiteSpace: "pre-line", | ||
}); | ||
|
||
const PageLinks = styled.div({ | ||
flex: "0 1 40%", | ||
display: "flex", | ||
flexDirection: "column", | ||
}); | ||
|
||
const LogoTitle = styled.div({ | ||
marginBottom: spacings.get(2), | ||
}); | ||
|
||
export default function Footer() { | ||
const t = useTranslations("Home.footer"); | ||
return ( | ||
<StyledFooter> | ||
<Section> | ||
<InnerContainer> | ||
<Address> | ||
<Title>{t("address-title")}</Title> | ||
<Content>{t("address-content")}</Content> | ||
<br /> | ||
<Title>{t("email-title")}</Title> | ||
<Content> | ||
<Link href={`mailto:${t("email-content")}`}>{t("email-content")}</Link> | ||
</Content> | ||
</Address> | ||
<PageLinks> | ||
<LinkInternal href="/privacy-policy">{t("link-privacy-policy")}</LinkInternal> | ||
<Spacer size={4} /> | ||
<LinkInternal href="/imprint">{t("link-imprint")}</LinkInternal> | ||
</PageLinks> | ||
</InnerContainer> | ||
<Spacer size={50} /> | ||
<InnerContainer> | ||
<div> | ||
<LogoTitle>{t("project-by")}</LogoTitle> | ||
<a href="https://www.technologiestiftung-berlin.de/" target="_blank"> | ||
<img src="/images/tsb-logo.svg" width={220} alt={t("tsb-logo-alt")} /> | ||
</a> | ||
</div> | ||
<div> | ||
<LogoTitle>{t("supported-by")}</LogoTitle> | ||
<a href="https://www.berlin.de/sen/kultgz/" target="_blank"> | ||
<img src="/images/sen-kugz-logo.svg" width={400} alt={t("sen-kugz-logo-alt")} /> | ||
</a> | ||
</div> | ||
</InnerContainer> | ||
</Section> | ||
</StyledFooter> | ||
); | ||
} |
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