diff --git a/src/components/Accommodations.jsx b/src/components/Accommodations.jsx index da1131f..bb27325 100644 --- a/src/components/Accommodations.jsx +++ b/src/components/Accommodations.jsx @@ -83,7 +83,9 @@ export function Accommodations({ id }) {

Discount:

- {accommodation.discount} + + {accommodation.discount} +

diff --git a/src/components/CallForMaps.jsx b/src/components/CallForMaps.jsx new file mode 100644 index 0000000..d474226 --- /dev/null +++ b/src/components/CallForMaps.jsx @@ -0,0 +1,76 @@ +import Link from 'next/link' +import { Container } from '@/components/Container' + +export function CallForMaps({ id }) { + return ( +
+ +

+ Call for Maps +

+ +
+

+ Submit your map +

+

+ A State of the Map conference would not be complete without maps! + That is why you are invited to showcase your maps at State of the + Map Europe. We welcome you to submit beautiful maps made of OSM + data. You could demonstrate to the community how well your area is + mapped, show a new map style... Everything is possible in our map + exhibition. The only condition is that your map is mainly based on + OSM data. +

+

+ Map Requirements +

+

+ Please submit an A1-sized PDF map in high resolution. We will print + and display it in the conference venue. If you already have a + printed copy of your submitted map, you may take it with you to the + conference, but make sure it does not exceed A1 size. If you want to + showcase a digital map style, we cannot provide a screen, but please + consider submitting screenshots and a short explanation of the + style. Note that if the number of maps we receive is larger than the + space available, we will make a selection. +

+

+ Submission Guidelines +

+

+ Simply write a email to{' '} + + maps@stateofthemap.eu + {' '} + with "Map Submission" as the subject, containing the + following information: +

+
    +
  • The map or a link to download it
  • +
  • A title for your map
  • +
  • The name(s) of author(s)
  • +
  • A short description (max. 250 words)
  • +
  • Whether you will bring the map or want us to print it
  • +
+ +

+ Deadline +

+
+
    +
  • September 26: Call for maps open
  • +
  • October 18 at 12:00 GMT: Deadline for map submission
  • +
  • November 10-12: State of the Map Europe 2023
  • +
+
+ {/*
+ +
*/} +
+
+
+ ) +} diff --git a/src/components/Hero.jsx b/src/components/Hero.jsx index fed7411..b6f4a41 100644 --- a/src/components/Hero.jsx +++ b/src/components/Hero.jsx @@ -1,5 +1,5 @@ import Image from 'next/image' - +import { Button } from '@/components/Button' import { Container } from '@/components/Container' import Logo from '@/images/logos/SOTM_Blue_full_logo_black.png' @@ -43,6 +43,9 @@ export function Hero({ id }) { ))} +
+ +
diff --git a/src/components/Menu.jsx b/src/components/Menu.jsx index b9073e2..d1e6daf 100644 --- a/src/components/Menu.jsx +++ b/src/components/Menu.jsx @@ -49,6 +49,9 @@ export function Menu() { +
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 + + +
+
+ +
+