Responsive large profile header, still needs more styling and nav, but functional.
17 lines
380 B
Haskell
17 lines
380 B
Haskell
module Info
|
|
( author
|
|
, description
|
|
, bio
|
|
, mail
|
|
) where
|
|
|
|
author, description, bio, mail :: String
|
|
|
|
author = "Etienne Werly"
|
|
|
|
description = "My personal website"
|
|
|
|
bio =
|
|
"Self taught in computer science, using Linux since 2013 and self hosting since 2020, I am taking a new turn to web development after a start as a mathematics teacher."
|
|
|
|
mail = "etienne@moqueur.chat"
|