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