blob: 2ec681facdca5740f881229e55d1bffc4f5587a3 (
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
|
<template>
<div>
<div class="landing-page">
<v-card>
<header id="showcase" class="animate__animated animate__fadeIn">
<v-img :src="require('../assets/img/Alee.png')" max-height="200px" max-width="200px" class="animate__animated animate__fadeIn" />
<br/>
<h1 class="display-4 animate__animated animate__zoomIn">{{ $t('WelcomeTitle') }}</h1>
<br/>
<h1 class="display-1 animate__animated animate__zoomIn">{{ $t('WelcomeSubtitle') }}</h1>
</header>
</v-card>
</div>
<v-container>
<div class="about">
<h1>{{ $t('AboutMe') }}</h1>
<p><b>{{ $t('AboutMeText') }}</b></p>
<h1>{{ $t('PlatformsTitle') }}</h1>
<v-btn target="_blank" href="https://www.youtube.com/channel/UCNRn4YDPCCWSEl3CT7eWorA" color="red">
<v-icon>mdi-youtube</v-icon> Youtube
</v-btn>
<v-btn target="_blank" href="https://twitter.com/Alee14498" color="light-blue">
<v-icon>mdi-twitter</v-icon> Twitter
</v-btn>
<v-btn target="_blank" href="https://discord.gg/EFhRDqG" color="#2C2F33">
<v-icon>mdi-discord</v-icon> Discord Server
</v-btn>
<v-btn target="_blank" href="https://github.com/Alee14" color="black">
<v-icon>mdi-github</v-icon> GitHub
</v-btn>
<v-btn target="_blank" href="https://lbry.tv/@Alee:4">
<v-icon>mdi-video</v-icon> IBRY
</v-btn>
<v-btn target="_blank" href="https://www.instagram.com/alee14498" color="pink">
<v-icon>mdi-instagram</v-icon> Instagram
</v-btn>
<v-btn target="_blank" href="https://www.reddit.com/user/alee1449" color="orange darken-3">
<v-icon>mdi-reddit</v-icon> Reddit
</v-btn>
<h1>{{ $t('TimelineTitle') }}</h1>
<p>{{ $t('TimelineContent2014') }}<br>{{ $t('TimelineContent2015') }}<br>{{ $t('TimelineContent2016') }}<br>{{ $t('TimelineContent2017') }}</p>
<h1>{{ $t('ProgrammingLanguagesTitle') }}</h1>
<ul>
<li>C#</li>
<li>C++</li>
<li>JavaScript</li>
<li>HTML</li>
<li>Vue</li>
<li>Python</li>
</ul>
<h1>{{ $t('FavouriteGamesTitle') }}</h1>
<ul>
<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>
<thead>
<tr>
<th>{{ $t('AleePCPartsTypeText') }}</th>
<th>{{ $t('AleePCPartsNameText') }}</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{ $t('AleePCPartsCPU') }}</td>
<td>AMD - Ryzen 3 2200G 3.5 GHz Quad-Core Processor</td>
</tr>
<tr>
<td>{{ $t('AleePCPartsCPUCooler') }}</td>
<td>Cooler Master - Hyper T2 54.8 CFM Sleeve Bearing CPU Cooler</td>
</tr>
<tr>
<td>{{ $t('AleePCPartsMemory') }}</td>
<td>Corsair - Vengeance LPX 16 GB (2 x 8 GB) DDR4-2400</td>
</tr>
<tr>
<td>{{ $t('AleePCPartsMainStorage') }}</td>
<td>Western Digital Blue 250 GB M.2-2280 Solid State Drive</td>
</tr>
<tr>
<td>{{ $t('AleePCPartsSecondStorage') }}</td>
<td>Western Digital Blue 2 TB 3.5" 5400RPM Internal Hard Drive</td>
</tr>
<tr>
<td>{{ $t('AleePCPartsMotherboard') }}</td>
<td>ASRock - B450M-HDV Micro ATX AM4</td>
</tr>
<tr>
<td>{{ $t('AleePCPartsCase') }}</td>
<td>Rosewill - FBM-X1 MicroATX Mini Tower Case</td>
</tr>
<tr>
<td>{{ $t('AleePCPartsPowerSupply') }}</td>
<td>EVGA - 500 W 80+ Certified ATX Power Supply</td>
</tr>
</tbody>
</v-simple-table>
</div>
<div class="credits">
<h1>{{ $t('CreditsTitle') }}</h1>
<p>{{ $t('CreditsGPLText') }} <a href="https://www.gnu.org/licenses/gpl-3.0.en.html" target="_blank">GPL-3.0</a>.</p>
<p>{{ $t('CreditsContent1') }} <a href="https://vuejs.org" target="_blank">Vue.JS</a>, <a href="https://nuxtjs.org" target="_blank">NuxtJS</a> & <a href="https://vuetifyjs.com" target="_blank">Vuetify</a>. {{ $t('CreditsContent2') }} <a href="https://netlify.com" target="_blank">Netlify</a>.</p>
</div>
<div class="contact">
<h1>{{ $t('ContactMeTitle') }}</h1>
<p>{{ $t('ContactMeText') }} <a href="mailto:andrew@alee14.me">andrew@alee14.me</a>.</p>
</div>
</v-container>
</div>
</template>
<script>
export default {
name: 'index',
layout: 'default',
head: {
title: 'Home',
script: [{ src: 'https://identity.netlify.com/v1/netlify-identity-widget.js' }]
}
}
</script>
<style scoped>
#showcase {
background-image:url("../assets/img/landing_page.png");
background-size: cover;
background-position: center;
height: 100vh;
display: flex;
text-shadow: 0px 0px 10px #000000;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 0 20px;
}
</style>
|