aboutsummaryrefslogtreecommitdiff
path: root/pages/projects
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2021-04-09 15:17:24 -0400
committerAndrew Lee <alee14498@protonmail.com>2021-04-09 15:17:24 -0400
commit577c4323fef0cd2360c8bc44bd9c9e5c0ffadcb9 (patch)
tree7badb49dfbb67f63a4b97abc38c9bc6960fd3cd1 /pages/projects
parent3fb9421ba90977e7f7ac4f1c2e1aadc6b57bcff3 (diff)
downloadpersonal-website-577c4323fef0cd2360c8bc44bd9c9e5c0ffadcb9.tar.gz
personal-website-577c4323fef0cd2360c8bc44bd9c9e5c0ffadcb9.tar.bz2
personal-website-577c4323fef0cd2360c8bc44bd9c9e5c0ffadcb9.zip
Inital rewrite v3
Diffstat (limited to 'pages/projects')
-rw-r--r--pages/projects/index.vue87
1 files changed, 0 insertions, 87 deletions
diff --git a/pages/projects/index.vue b/pages/projects/index.vue
deleted file mode 100644
index f68200f..0000000
--- a/pages/projects/index.vue
+++ /dev/null
@@ -1,87 +0,0 @@
-<template>
- <div>
- <header id="showcase">
- <h1 class="display-3 animate__animated animate__fadeIn">{{ $t('ProjectsText') }}</h1>
- <h1 class="animate__animated animate__fadeIn">{{ $t('ProjectsSubtitle') }}</h1>
- </header>
- <v-container>
- <v-row>
- <v-col cols="12">
- <v-card class="green darken-4">
- <v-card-title>Alee Productions</v-card-title>
- <v-card-text>{{ $t('ProjectsALP') }}</v-card-text>
- <v-card-actions>
- <v-btn text normal target="_blank" href="https://alee-productions.xyz">{{ $t('ProjectsWebsite') }}</v-btn>
- <v-btn text normal target="_blank" href="https://github.com/aleeproductions">GitHub</v-btn>
- <v-btn text normal target="_blank" href="https://twitter.com/aleeproductions">Twitter</v-btn>
- </v-card-actions>
- </v-card>
- <br>
- <v-card class="green darken-4">
- <v-card-title>AleeBot</v-card-title>
- <v-card-text>{{ $t('ProjectsAleeBot') }}</v-card-text>
- <v-card-actions>
- <v-btn text normal target="_blank" href="https://github.com/aleeproductions/AleeBot">GitHub</v-btn>
- </v-card-actions>
- </v-card>
- <br>
- <v-card class="green darken-4">
- <v-card-title>DLMP3</v-card-title>
- <v-card-text>{{ $t('ProjectsDLMP3') }}</v-card-text>
- <v-card-actions>
- <v-btn text normal target="_blank" href="https://github.com/Alee14/DLMP3">GitHub</v-btn>
- </v-card-actions>
- </v-card>
- <br>
- <v-card class="green darken-4">
- <v-card-title>First Website</v-card-title>
- <v-card-text>{{ $t('ProjectsFirstWebsite') }}</v-card-text>
- <v-card-actions>
- <v-btn text normal target="_blank" href="https://alee14.github.io/first-website">{{ $t('ProjectsWebsite') }}</v-btn>
- </v-card-actions>
- </v-card>
- <br>
- <v-card class="green darken-4">
- <v-card-title>Weather Web Page</v-card-title>
- <v-card-text>{{ $t('ProjectsWWP') }}</v-card-text>
- <v-card-actions>
- <v-btn text normal target="_blank" href="https://alee14.github.io/weather-website">{{ $t('ProjectsWebsite') }}</v-btn>
- </v-card-actions>
- </v-card>
- <br>
- <v-card class="green darken-4">
- <v-card-title>Raspberry Pi OS Menu</v-card-title>
- <v-card-text>{{ $t('ProjectsRPIMenu') }}</v-card-text>
- <v-card-actions>
- <v-btn text normal target="_blank" href="https://github.com/Alee14/RPi-Menu">GitHub</v-btn>
- </v-card-actions>
- </v-card>
- </v-col>
- </v-row>
- </v-container>
- </div>
-</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>