tilde-raf/index.html
NotAShelf 1cd28becab
add opengraph tags & social cards
No forgejo icon, shame on you FA!
2024-09-27 21:42:20 +03:00

106 lines
3.2 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://frzn.dev/~raf" />
<meta property="og:title" content="~raf @ frzn.dev" />
<meta property="og:description" content="My personal slice on frzn.dev" />
<meta property="og:image" content="static/pfp-angel.png" />
<meta property="og:site_name" content="~raf @ frzn.dev" />
<meta property="og:locale" content="en_US" />
<link
rel="icon"
href="static/favicon.ico"
type="image/x-icon"
sizes="32x32"
/>
<link
rel="icon"
href="static/favicon.ico"
type="image/x-icon"
sizes="16x16"
/>
<title>~raf @ frzn.dev</title>
<link rel="stylesheet" href="styles.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"
/>
</head>
<body>
<div class="container">
<div class="card">
<div style="display: flex; justify-content: center">
<img
src="static/pfp-angel.png"
alt="NotAShelf"
class="profile-picture"
/>
</div>
<h2>About Me</h2>
<p>
I'm raf, most commonly known as NotAShelf on the world wide web. I am
a part-time FOSS contributor and part-time political scientist.
</p>
<p>
You are visiting my personal page hosted on frzn.dev, which I will
<a class="bullshit">definitely</a> update soon with more details.
Totally, I promise. Trust me.
</p>
<div class="social-cards">
<a
href="https://github.com/NotAShelf"
target="_blank"
rel="noopener noreferrer"
>
<i class="fab fa-github"></i>
</a>
<a
href="https://x.com/NotAShelf"
target="_blank"
rel="noopener noreferrer"
>
<i class="fa-brands fa-twitter"></i>
</a>
<a
href="mailto:raf@notashelf.dev"
target="_blank"
rel="noopener noreferrer"
>
<i class="fas fa-envelope"></i>
</a>
</div>
</div>
</div>
<footer>
<span class="footer-text" id="footer-text"></span><br />
<span class="footer-text" id="footer-text">
Made with
<span
class="hover-item"
data-content="Seriously, I love you guys. Special thanks to Donutman (MrAureliusR) for introducing me to the world of Linux"
>
<i class="fas fa-heart"></i> </span
>,
<span
class="hover-item"
data-content="I have an unhealthy addiction. Help, please."
>
<i class="fas fa-coffee"></i> </span
>, and
<span
class="hover-item"
data-content="I maintain my own Neovim distribution!"
>
<i class="fas fa-code"></i>
</span>
</span>
</footer>
<div class="tooltip"></div>
<script src="script.js"></script>
</body>
</html>