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 { a, p {
color: white; color: white;
text-decoration: none;
} }
.f-col { .f-col {

View File

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

View File

@ -1,15 +1,19 @@
<template> <template>
<div class="about"> <main class="about">
<h1>This is an about page</h1> <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> </template>
<style> <style></style>
@media (min-width: 1024px) {
.about {
min-height: 100vh;
display: flex;
align-items: center;
}
}
</style>