Added: about page

This commit is contained in:
Filip Rojek 2023-12-30 21:07:45 +01:00
parent 9d190463be
commit 4d9b916fb4
3 changed files with 19 additions and 12 deletions

View File

@ -11,7 +11,6 @@ body {
a, p {
color: white;
text-decoration: none;
}
.f-col {

View File

@ -8,4 +8,8 @@ header nav {
header nav div {
display: flex;
gap: 1rem;
}
header nav a {
text-decoration: none;
}

View File

@ -1,15 +1,19 @@
<template>
<div class="about">
<main class="about">
<h1>This is an about page</h1>
</div>
<p>
Lorem, ipsum dolor sit amet consectetur adipisicing elit. Nemo molestiae commodi ipsam cumque
voluptatem laboriosam modi ratione, ad porro repellendus deleniti quis nostrum fuga quaerat
voluptas facere minima explicabo! Voluptatem.
</p>
<p>
Source code available at:
<a href="https://git.filiprojek.cz/fr/tim" target="_blank"
>https://git.filiprojek.cz/fr/tim</a
>
</p>
<p>Created by <a href="https://filiprojek.cz" target="_blank">@filiprojek</a>, 2023</p>
</main>
</template>
<style>
@media (min-width: 1024px) {
.about {
min-height: 100vh;
display: flex;
align-items: center;
}
}
</style>
<style></style>