aboutsummaryrefslogtreecommitdiff
path: root/pages/projects/index.vue
blob: 672cfdc8ef8886996e6a89f02da2da4245aa893d (plain) (blame)
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<template>
        <v-card>
                <header id="showcase">
                        <h1 class="display-3 animated fadeIn">Projects</h1>
                        <h1 class="animated fadeIn">My current and past projects goes here.</h1>
                </header>
                <v-container>
                        <v-row>
                                <v-col cols="12">
                                        <v-card class="green darken-4">
                                                <v-card-title>Hello world</v-card-title>
                                                <v-card-text>Hello world 2</v-card-text>
                                        </v-card>
                                        <br>
                                        <v-card>
                                                <v-card-title>Hello world</v-card-title>
                                                <v-card-text>Hello world 2</v-card-text>
                                        </v-card>
                                </v-col>
                        </v-row>
                </v-container>
        </v-card>
</template>

<script>
export default {
  name: 'projects',
  head: {
    title: 'Projects'
  }
}
</script>

<style scoped>
        #showcase {
                background-image:url("../../assets/img/landing_page.png");
                background-size: cover;
                background-position: center;
                height: 30vh;
                display: flex;
                text-shadow: 0px 0px 10px #000000;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                padding: 0 20px;
        }
</style>