Passed
Push — master ( bc9dbe...8d8776 )
by Kevin Van
03:41
created

SpaghettiPage.render   B

Complexity

Conditions 1

Size

Total Lines 49
Code Lines 46

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 46
dl 0
loc 49
rs 8.7672
c 0
b 0
f 0
cc 1
1
import React, { Component } from "react"
2
import { graphql } from "gatsby"
3
import { GatsbyImage } from "gatsby-plugin-image"
4
5
import Layout from "../layouts/index"
6
7
import SEO from "../components/seo"
8
9
class SpaghettiPage extends Component {
10
  render() {
11
    const { affiche } = this.props.data
12
    return (
13
      <Layout>
14
        <SEO
15
          lang="nl-BE"
16
          title="Spaghettislag Ultra's 55"
17
          description="Spaghettislag Ultra's 55"
18
          path={this.props.location.pathname}
19
        />
20
        <div className={`limited-width_wrapper`}>
21
          <header>
22
            <h1>Spaghettislag ULTRA'S 55</h1>
23
            <h2>Supportersclub KCVV Elewijt</h2>
24
          </header>
25
          <main>
26
            <p>Op zondag 3 oktober 2021 organiseert de supportersclub "Ultra's 55" zijn eerste spaghettislag.</p>
27
            <p>
28
              Kom tussen 11:00 en 13:30 smullen van onze heerlijke spaghetti bolognese in de kantine van KCVV Elewijt.
29
            </p>
30
            <p>Prijs is 10 euro voor volwassenen en 7 euro voor een kinderportie.</p>
31
            <p>
32
              Vooraf en nadien spelen onze drie seniorploegen hun competitiewedstrijd thuis:
33
              <ul>
34
                <li>10:15 - Zondagsreserven vs FC Ramsdonk</li>
35
                <li>14:00 - KCVV Elewijt B vs VC Groot-Dilbeek B</li>
36
                <li>15:00 - KCVV Elewijt A vs KFC Baal</li>
37
              </ul>
38
            </p>
39
            <p>Inschrijven kan, maar is niet verplicht:</p>
40
            <tbkr-bm-widget
41
              restaurant-id="34742560"
42
              source="website"
43
              use-modal="0"
44
              lang="nl"
45
              theme="light"
46
            ></tbkr-bm-widget>
47
            <script src="https://reservations.tablebooker.com/tbkr-widget-import.min.js"></script>
48
          </main>
49
          <footer>
50
            <GatsbyImage
51
              image={{
52
                ...affiche.childImageSharp.gatsbyImageData,
53
              }}
54
              alt="Spaghettislag KCVV Ultra's 55"
55
            />
56
          </footer>
57
        </div>
58
      </Layout>
59
    )
60
  }
61
}
62
63
export const pageQuery = graphql`
64
  query {
65
    affiche: file(name: { eq: "spaghetti" }) {
66
      ...KCVVFullWidth
67
    }
68
  }
69
`
70
71
export default SpaghettiPage
72