This commit is contained in:
laura 2025-11-08 08:48:19 -03:00
parent 110cb2a3e5
commit 869f3dfbe3
Signed by: w
GPG key ID: BCD2117C99E69817
7 changed files with 173 additions and 31 deletions

60
routes/about.tsx Normal file
View file

@ -0,0 +1,60 @@
/**
* Copyright (c) 2025 favewa
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
import { Fm } from "@/components/Fm.tsx";
import { Header } from "@/components/Header.tsx";
import Links from "@/components/Links.tsx";
import ProjectCard from "@/components/ProjectCard.tsx";
import Code from "@/islands/Code.tsx";
import Meow from "@/islands/Meow.tsx";
import "@/assets/home.css";
import Footer from "../components/Footer.tsx";
export default function About() {
return (
<>
<Links selected="about" />
<section id="about">
<h2>About</h2>
<p>
Hi! I'm Lívia, a 18-year-old girl from Brazil passionate about open
access to information, technology, linguistics, functional
programming, and pretty much anything that involves understanding
technology, human language, or philosophical frameworks. I hope you
find something interesting here, and don't hesitate to reach out if
you feel like it. <span class="highlight">:3</span>
</p>
<p>
Beyond quirky technology, I <i>really</i>{" "}
like linguistics and philosophy enthusiast. I'm also autistic n' ADHD,
so I might struggle with humour once in a while. I really like
befriending new people and growing as a person every single day!!! If
you've read this far, thanks for stopping by!{" "}
</p>
</section>
<section id="languages">
<h2>languages</h2>
<ul style="text-align-last: left">
<li>
brazilian portuguese <span class="highlight">(native)</span>
</li>
<li>
«all over the place» english <span class="highlight">(C1)</span>
</li>
<li>
latin american spanish <span class="highlight">(A2)</span>
</li>
</ul>
</section>
<section id="trivia">
<h2>trivia</h2>
<ul>
<li>there are no easter eggs up here. go away</li>
</ul>
</section>
<Footer />
</>
);
}

View file

@ -10,6 +10,7 @@ import ProjectCard from "@/components/ProjectCard.tsx";
import Code from "@/islands/Code.tsx";
import Meow from "@/islands/Meow.tsx";
import "@/assets/home.css";
import Footer from "../components/Footer.tsx";
export default function Home() {
return (
@ -17,17 +18,24 @@ export default function Home() {
<Links selected="home" />
<Header class="home" />
<section id="about">
<h2>About</h2>
<h2>Summary</h2>
<p>
Advocate for open access to information and knowledge and aspiring
electrical engineer with complementary interests in systems
programming and linguistics.
I'm an aspiring electrical engineer with a keen interest in open
access to information and knowledge. My technical work centers on
functional programming, C99, and writing quirky TypeScript code that
explores its more obscure corners and unconventional patterns. I'm
drawn to atypical low-level technologies and have a particular
interest in the x86 and RISC-V ISAs.
</p>
<p>
On the side, I maintain a modest FreeBSD server where I self-host this
website and various services. This is nothing particularly impressive,
just a growing curiosity about systems administration.
When I'm not studying circuits or coding, it's likely that I'm either
exploring linguistics or listening to music. My tastes shift
constantly with my hyperfocus, ranging from indie, shoegaze, and J-Pop
to speedcore and various metal derivatives. I run a FreeBSD server
that hosts this site and various services, serving as my hands-on lab
for systems administration. <span class="highlight">^-^</span>
</p>
<a href="/about"> Extended version</a>
</section>
<section id="links">
<h2>Links</h2>
@ -109,17 +117,6 @@ export default function Home() {
license="BSD-3-Clause"
/>
</li>
<li>
<ProjectCard
author="w"
name="acpi.at"
description="personal website"
url="http://kyu.re/~web"
languageColor="#3178c6"
languageName="TypeScript"
license="AGPL-3.0-or-later"
/>
</li>
<li>
<ProjectCard
author="w"
@ -243,6 +240,7 @@ export default function Home() {
</a>
</div>
</section>
<Footer />
</>
);
}