Here is a picture. You can put pictures and static files into the /public folder

Here is some stuff made into HTML from Markdown.
The styling of the markdown code blocks can easily altered with CSS.
fn add() {
let a = 5;
let b = 10;
let sum = a + b;
println!("Sum of a and b = {}", sum);
}
interface MessageProps {
text: string;
important: boolean;
}
function Message({ text, important }: MessageProps) {
return (
<div>
{important ? 'Important message: ' : 'Regular message: '}
{text}
</div>
);
}
Here is a link to the about page.