personal-site/pages/index.vue

110 lines
2.7 KiB
Vue
Raw Normal View History

2023-11-01 20:31:43 +00:00
<template>
<div id="home" class="row centerChildren">
<img class="pfp" src="/assets/pfp.svg">
<main class="col gap2">
<h1>Hi, I'm F53</h1>
<p class="bio">
I'm a {{ Math.floor((Date.now() / 100000 - 10463292) / 315360) }}yo Full Stack Developer
who spends a majority of their free time tinkering on mods and websites.
Fluent in React, Vue, Ruby on Rails, Java, and Python.
</p>
<ul class="links gap4 row centerChildren">
<li>
<NuxtLink to="mailto:fseusb@gmail.com" aria-label="email">
2023-11-10 06:34:34 +00:00
<Icon name="material-symbols:mail-rounded" />
2023-11-01 20:31:43 +00:00
<span>Email</span>
</NuxtLink>
</li>
<li>
<NuxtLink to="https://github.com/CodeF53" aria-label="github">
2023-11-10 06:34:34 +00:00
<Icon name="ph:github-logo-fill" />
2023-11-01 20:31:43 +00:00
<span>Github</span>
</NuxtLink>
</li>
<li>
<NuxtLink to="https://dev.to/f53" aria-label="blog">
2023-11-10 06:34:34 +00:00
<Icon name="ri:article-fill" />
<span>Blog</span>
2023-11-01 20:31:43 +00:00
</NuxtLink>
</li>
2023-11-10 06:34:34 +00:00
<!-- <li>
<NuxtLink to="https://dev.to/f53" aria-label="blog">
<Icon name="mdi:linkedin" />
<span>LinkedIn</span>
</NuxtLink>
</li> -->
2023-11-01 20:31:43 +00:00
</ul>
</main>
</div>
<div>
<h2>TODO:</h2>
<ul>
2023-11-10 06:34:34 +00:00
<li>background: move render to worker thread, smoothly move points after a resize</li>
<li>markdown articles for blogs and experience, filterable, sortable</li>
2023-11-01 20:31:43 +00:00
<li>header for non-homepage pages</li>
2023-11-10 06:34:34 +00:00
<li>duplicate site, but with real name and picture</li>
2023-11-01 20:31:43 +00:00
</ul>
</div>
</template>
<style lang="scss">
#home {
--imgSize: min(20rem, 50vw, 50vh);
--bioSize: min(40rem, 100vw - 2rem);
@media (max-width: 60rem) {
flex-direction: column;
--imgSize: min(20rem, 100vw - 1rem)
}
gap: 2rem;
img.pfp {
width: var(--imgSize);
height: var(--imgSize);
}
main {
max-width: var(--bioSize);
}
.links {
list-style-type: none;
padding: 0;
display: flex;
flex-wrap: wrap;
2023-11-10 06:34:34 +00:00
li {
background-color: var(--accent-light);
&, > * { color: var(--accent-dark); }
&:hover { filter: brightness(0.95); scale: 0.95; }
&:active { filter: brightness(0.9); scale: 1.05; }
transition: scale 0.6s cubic-bezier(0.34, 3, 0.64, 1);
font-weight: bold;
padding: .5rem .75rem;
border-radius: 1rem;
2023-11-01 20:31:43 +00:00
cursor: pointer;
2023-11-10 06:34:34 +00:00
a {
display: flex;
gap: .25rem;
justify-content: center;
align-items: center;
text-decoration: none;
> svg {
height: 1.25rem;
width: 1.25rem;
}
}
2023-11-01 20:31:43 +00:00
}
}
2023-11-10 06:34:34 +00:00
h1 { color: var(--accent-light); }
2023-11-01 20:31:43 +00:00
}
</style>