Passed
Push — master ( 30b80c...639ddf )
by Kevin Van
08:00 queued 04:14
created

BBQPage.render   A

Complexity

Conditions 1

Size

Total Lines 38
Code Lines 36

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 36
dl 0
loc 38
rs 9.016
c 0
b 0
f 0
cc 1
1
import React, { Component } from "react"
2
3
import Layout from "../layouts/index"
4
import SEO from "../components/seo"
5
import { StaticImage } from "gatsby-plugin-image"
6
7
class BBQPage extends Component {
8
  render() {
9
    return (
10
      <Layout>
11
        <SEO
12
          lang="nl-BE"
13
          title="BBQ - Inschrijvinsformulier"
14
          description="BBQ - Inschrijvinsformulier"
15
          path={this.props.location.pathname}
16
        />
17
        <div className={`limited-width_wrapper`}>
18
          <header>
19
            <h1>Sinterklaasbarbecue - Inschrijving</h1>
20
          </header>
21
          <main>
22
            <h2>Zaterdag 4 december 2021</h2>
23
            <p>
24
              <<< AAN TE VULLEN MET INFO >>>
25
            </p>
26
            <p>
27
              Door de geldende Corona-maatregelen is het verplicht om op voorhand een tafel met je bubbel/gezin te
28
              reserveren.
29
            </p>
30
31
            <tbkr-bm-widget
32
              restaurant-id="34742560"
33
              source="website"
34
              use-modal="0"
35
              lang="nl"
36
              theme="light"
37
              primary-color="#4b9b48"
38
              takeaway="0"
39
            ></tbkr-bm-widget>
40
            <script src="https://reservations.tablebooker.com/tbkr-widget-import.min.js"></script>
41
42
            <StaticImage src="../images/bbq2021.jpg" alt="Barbecue 2021" placeholder="blurred" />
43
          </main>
44
        </div>
45
      </Layout>
46
    )
47
  }
48
}
49
50
export default BBQPage
51