about summary refs log tree commit diff
path: root/components/KonkursKulinarny.vue
blob: c376d828462f63c016e9700f0731959741e364ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<template>
  <section>
    <img src="/assets/konkurs-kulinarny/chef_hat.svg" />
    <h1>Konkurs Kulinarny</h1>
    <plain-button @click="$router.push('/konkurs-kulinarny')" text="Przejdź" />
  </section>
</template>

<script>
import PlainButton from './Buttons/PlainButton'

export default {
  name: 'KonkursKulinarny',
  components: {
    PlainButton,
  },
}
</script>

<style scoped>
h1 {
  letter-spacing: 0.175em;
  text-transform: uppercase;
  margin: 1.5em 0;
}

section {
  margin: 80px 0;
  font-size: 1.5em;
}
</style>