add about page

This commit is contained in:
Laureηt 2024-09-18 17:15:47 +02:00
parent c94901dba2
commit 784f81750d
Signed by: Laurent
SSH key fingerprint: SHA256:pb5NrYg80So5z9hmqQFPmp//sgr+DFeJkKhmGyU2NLk
3 changed files with 69 additions and 4 deletions

56
src/about.html Normal file
View file

@ -0,0 +1,56 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>Laurent Fainsin</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Laurent Fainsin">
<link rel="canonical" href="https://laurent.fainsin.bzh">
<meta property="og:title" content="Laurent Fainsin" />
<meta property="og:url" content="https://laurent.fainsin.bzh" />
<meta property="og:type" content="website" />
<link rel="icon" type="image/png" href="favicon.ico">
<link href="style.css" rel="stylesheet" type="text/css" media="screen">
</head>
<body>
<h1 class="title">About Me</h1>
<p>
👋 I'm Laurent Fainsin. I'm a French
<a href="https://repertoire.iesf.fr/#profile/b8700af3e7bcb0f7c3983528561a972f">graduate</a>
<a href="https://www.francecompetences.fr/recherche/rncp/35713/">engineer</a>
from <a href="https://www.enseeiht.fr/">ENSEEIHT</a>.
</p>
<p>
I've studied
<a href="https://prepas.org/index.php?rubrique=53">Engineering (PCSI & PSI)</a> and
<a href="https://www.enseeiht.fr/en/training/full-time-engineering-program/sn/program-sn.html">Computer Science</a>
for 5 years.
</p>
<p>
I'm interested in
Software Development,
Machine Learning and
Computer Graphics.
</p>
<p>
I love Free and Open Source Software (FOSS), I've volunteered for
<a href="https://capitoledulibre.org/">Capitole du Libre</a> and
<a href="https://thcon.party/">Toulouse Hacking Convention</a>.
</p>
</body>
</html>

View file

@ -27,7 +27,7 @@
</div>
<div class="social">
<a href="about"><img src="img/info.svg" alt="Info" /></a>
<a href="about.html"><img src="img/info.svg" alt="Info" /></a>
<a href="https://github.com/Laurent2916" rel="me"><img src="img/github.svg" alt="GitHub" /></a>
<a href="https://git.fainsin.bzh/Laurent" rel="me"><img src="img/forgejo.svg" alt="Forgejo" /></a>
<a href="https://huggingface.co/1aurent" rel="me"><img src="img/huggingface.svg" alt="HuggingFace" /></a>

View file

@ -6,12 +6,13 @@
}
body {
max-width: 70vw;
font-size: 1.2rem;
margin: auto;
font-family: "Inter", "Helvetica", serif;
text-rendering: optimizelegibility;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-image: url("img/bg.png");
background-position: -20vh -15vh;
background-size: 200vh;
@ -19,9 +20,16 @@ body {
background-attachment: fixed;
}
p {
line-height: 0.7;
}
.center {
text-align: center;
}
.title {
margin-top: 10vh;
text-align: center;
}
.social {
@ -33,6 +41,7 @@ body {
.social img {
width: 1.5rem;
height: 1.5rem;
padding: 1rem;
border-radius: 1rem;
border: 1px solid rgba(0, 0, 0, 0.15);