From e4b065182ceaf55434d17dd15a47cd3b70d9a913 Mon Sep 17 00:00:00 2001 From: nobohan Date: Tue, 19 Sep 2023 09:21:37 +0200 Subject: [PATCH 1/8] Add CallForMaps page - proposition --- src/components/CallForMaps.jsx | 59 ++++++++++++++++++++++++++++++++++ src/components/Menu.jsx | 1 + src/pages/call-for-maps.jsx | 24 ++++++++++++++ 3 files changed, 84 insertions(+) create mode 100644 src/components/CallForMaps.jsx create mode 100644 src/pages/call-for-maps.jsx diff --git a/src/components/CallForMaps.jsx b/src/components/CallForMaps.jsx new file mode 100644 index 0000000..34adfc2 --- /dev/null +++ b/src/components/CallForMaps.jsx @@ -0,0 +1,59 @@ +import Link from 'next/link' +import { Container } from '@/components/Container' + +export function CallForMaps({ id }) { + + return ( +
+ +

+ Call for Maps +

+ +
+

+ Submit your map +

+

+ A SOTM conference would not be complete without a map exhibition! So at this SOTM-Europe, + you can submit a map, or a poster, to be exhibited during the conference. We are looking for + beautiful maps made of OSM data. You may either show to the community how well is mapped your + place or showcase a new map style. You can also display a poster about some OSM-related + research or process (an achievement within your local community, a use case of re-using OSM + data, ...). The only condition is that is should be about OSM. +

+

+ Guidelines +

+

We'd like to receive posters in the A0 format. The SOTM team can print it for the conference + venue. However, you can also print it yourself and bring a printed copy at the conference. In + this case, other format than A0 is acceptable as long as it would fit somehow into a A0 space... + If you want to showcase a digital map style, we cannot provide screen, but please consider to + print some screenshots and a short explanation of the style. +

+

+ Submission +

+

Simply write a email to + contact@stateofthemap.eu + with "map submission" as the object. TODO +

+

+ Timeline & Deadlines +

+
+
    +
  • October 27 at 12:00: Deadline for map submissions
  • +
  • November 10-12: State of the Map Europe 2023
  • +
+
+ {/*
+ +
*/} +
+
+
+ ) +} diff --git a/src/components/Menu.jsx b/src/components/Menu.jsx index 6b35415..bdb4f2c 100644 --- a/src/components/Menu.jsx +++ b/src/components/Menu.jsx @@ -10,6 +10,7 @@ const navigation = [ { name: 'About', href: '/' }, { name: 'Accommodations', href: '/accommodations' }, { name: 'Schedule', href: '/schedule' }, + { name: 'Map submission', href: '/call-for-maps' }, ] const ticketURL = 'https://pretix.eu/sotm-eu/2023/' diff --git a/src/pages/call-for-maps.jsx b/src/pages/call-for-maps.jsx new file mode 100644 index 0000000..7939a41 --- /dev/null +++ b/src/pages/call-for-maps.jsx @@ -0,0 +1,24 @@ +import Head from 'next/head' + +import { Footer } from '@/components/Footer' +import { Header } from '@/components/Header' +import { CallForMaps } from '@/components/CallForMaps' + +export default function Page() { + return ( + <> + + State of the Map EU 2023 - Call for maps + + +
+
+ +
+