diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2020-09-06 15:21:08 -0400 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2020-09-06 15:21:08 -0400 |
| commit | cf98123bdd652c36fbd80984c7270f28954ab79c (patch) | |
| tree | 35948ee7736e735e6603d0302b87119984c8ab33 | |
| parent | 549c44002f8b30580fe045dbb7d5affcf2146bda (diff) | |
| download | personal-website-cf98123bdd652c36fbd80984c7270f28954ab79c.tar.gz personal-website-cf98123bdd652c36fbd80984c7270f28954ab79c.tar.bz2 personal-website-cf98123bdd652c36fbd80984c7270f28954ab79c.zip | |
Added a communties section, new page, added games
| -rw-r--r-- | assets/img/alee-logo/logo-banner.png | bin | 0 -> 2234183 bytes | |||
| -rw-r--r-- | components/Navbar.vue | 1 | ||||
| -rw-r--r-- | locales/en.json | 3 | ||||
| -rw-r--r-- | locales/fr.json | 1 | ||||
| -rw-r--r-- | pages/alee-logo/index.vue | 32 | ||||
| -rw-r--r-- | pages/index.vue | 25 |
6 files changed, 54 insertions, 8 deletions
diff --git a/assets/img/alee-logo/logo-banner.png b/assets/img/alee-logo/logo-banner.png Binary files differnew file mode 100644 index 0000000..8230c02 --- /dev/null +++ b/assets/img/alee-logo/logo-banner.png diff --git a/components/Navbar.vue b/components/Navbar.vue index 31eb39a..2b9976e 100644 --- a/components/Navbar.vue +++ b/components/Navbar.vue @@ -56,6 +56,7 @@ export default { { title: 'BlogText', link: '/blog' }, { title: 'ProjectsText', link: '/projects' }, { title: 'VideosText', link: '/videos' } + // { title: 'AleeLogoText', link: '/alee-logo' } ] } }, diff --git a/locales/en.json b/locales/en.json index b3f88ce..3681a70 100644 --- a/locales/en.json +++ b/locales/en.json @@ -13,6 +13,7 @@ "ProgrammingLanguagesTitle": "Programming Languages", "FavouriteGamesTitle": "Favourite Games", "BadgesTitle": "Badges", + "CommunitiesTitle": "Communities", "AleePCPartsTitle": "AleePC Parts", "AleePCPartsTypeText": "Part Type", "AleePCPartsNameText": "Part Name", @@ -44,6 +45,8 @@ "VideosText": "Videos", "VideosSubtitle": "This is where you see my videos.", "VideosButton": "View more videos here", + "AleeLogoText": "Alee Logo", + "AleeLogoSubtitle": "Where you see the history of my logos that I made or a friend made.", "Footer": "Footer", "FooterCopyright": "© Copyright 2018-2020 Andrew Lee. All rights reserved." }
\ No newline at end of file diff --git a/locales/fr.json b/locales/fr.json index 54a879d..6ca15ed 100644 --- a/locales/fr.json +++ b/locales/fr.json @@ -13,6 +13,7 @@ "ProgrammingLanguagesTitle": "Langage de Programmation", "FavouriteGamesTitle": "Mon Jeux de Vidéo Préféré", "BadgesTitle": "Badges", + "CommunitiesTitle": "Communautés", "AleePCPartsTitle": "AleePC Pièces", "AleePCPartsTypeText": "Pièces Type", "AleePCPartsNameText": "Pièces Nom", diff --git a/pages/alee-logo/index.vue b/pages/alee-logo/index.vue new file mode 100644 index 0000000..f62b615 --- /dev/null +++ b/pages/alee-logo/index.vue @@ -0,0 +1,32 @@ +<template> + <div> + <v-card> + <header id="showcase"> + <h1 class="display-3 animate__animated animate__fadeIn">{{ $t('AleeLogoText') }}</h1> + <h1 class="animate__animated animate__fadeIn">{{ $t('AleeLogoSubtitle') }}</h1> + </header> + </v-card> + <v-img src="../../assets/img/alee-logo/logo-banner.png" max-width="300" max-height="300"></v-img> + </div> +</template> + +<script> +export default { + name: 'index' +} +</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> diff --git a/pages/index.vue b/pages/index.vue index 754d193..2ec681f 100644 --- a/pages/index.vue +++ b/pages/index.vue @@ -50,19 +50,28 @@ </ul> <h1>{{ $t('FavouriteGamesTitle') }}</h1> <ul> - <li>Splatoon 2</li> - <li>Animal Crossing: New Horizons</li> - <li>Minecraft</li> - <li>Super Mario Maker 2</li> - <li>Super Mario Odyssey</li> - <li>PC Building Simulator</li> - <li>Software Inc</li> - <li>Hacknet</li> + <li>Splatoon 2</li> + <li>Minecraft</li> + <li>Animal Crossing: New Horizons</li> + <li>Super Mario Maker 2</li> + <li>Super Mario Odyssey</li> + <li>Mario & Luigi Bowser's Inside Story</li> + <li>Club Penguin: Elite Penguin Force</li> + <li>Software Inc</li> + <li>PC Building Simulator</li> + <li>Hacknet</li> </ul> <h1>{{ $t('BadgesTitle') }}</h1> <img src="http://www.hackthebox.eu/badge/image/391735" alt="Hack The Box"> <img src="https://tryhackme-badges.s3.amazonaws.com/Alee.png" alt="TryHackMe"> </div> + <div class="communities"> + <h1>{{ $t('CommunitiesTitle') }}</h1> + <ul> + <li><a href="https://www.bnbdiscord.net">bits & Bytes</a></li> + <li><a href="https://discord.gg/nTQM7h4">TheEdgeNK</a></li> + </ul> + </div> <div class="aleepc-specs"> <h1>{{ $t('AleePCPartsTitle') }}</h1> <v-simple-table> |
