import { asset } from "../assets.ts"; import { Article } from "./article.tsx"; const Header = () => (

Adædra

Software developer
Rust, Ruby, TypeScript, Linux
Paris, France
Adaedra's mascot
); type Props = { articles: Article[]; }; const Articles = ({ articles }: Props) => ( <>

Latest articles

); const SOCIALS: [string, string, string][] = [ ["Gitea", "https://gitea.adaedra.eu", "git"], ["Mastodon", "https://nerdculture.de/@adaedra", "mastodon"], ["LinkedIn", "https://www.linkedin.com/in/thibault-hamel/", "linkedin"], ]; const Socials = () => ( <>

Find me elsewhere

); const Footer = () => ; export default (props: Props) => ( <>