Skip to content

Commit 031a020

Browse files
simple bio and dev tools page
1 parent b9878f6 commit 031a020

File tree

4 files changed

+29
-7
lines changed

4 files changed

+29
-7
lines changed

priv/articles/dev.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
title: "My dev Tools"
3+
---
4+
# My dev Tools
5+
- alacritty
6+
- starship
7+
- zellij

priv/articles/home.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
# hey there
1+
## About me
2+
Fifteen years into my software journey, I've found my home in Elixir and functional programming. I'm someone who finds deep satisfaction in the process itself—whether debugging systems, experimenting with home brewing, or watching seeds become gardens.

priv/layout.html.eex

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
1-
<html>
1+
<!DOCTYPE html>
2+
<html lang="en">
23
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
7+
<meta name="description" content="">
8+
<meta name="keywords" content="">
9+
<meta name="author" content="">
10+
311
<title><%= article.meta["title"] %></title>
412

513
<link rel="preconnect" href="https://fonts.googleapis.com">
@@ -11,10 +19,15 @@
1119
<body>
1220
<header>
1321
<img src="https://avatars.githubusercontent.com/u/625089" />
14-
<div>
22+
<a href="/">
1523
<h1>Robson Perassoli</h1>
16-
<p>Software Engineer</p>
17-
</div>
24+
<h2>Software Engineer</h2>
25+
</a>
26+
<nav>
27+
<a href="https://github.com/robsonperassoli" target="_blank">Github</a>
28+
<a href="https://www.linkedin.com/in/robsonperassoli/" target="_blank">LinkedIn</a>
29+
<a href="/dev">/dev</a>
30+
</nav>
1831
</header>
1932

2033
<article class="markdown">

priv/static/styles.css

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,15 @@ header {
3939
display: flex;
4040
gap: 1rem;
4141
padding-bottom: 1rem;
42-
div {
42+
a {
43+
display: block;
4344
h1 {
4445
font-size: 3rem;
4546
font-weight: 800;
4647
line-height: 3rem;
4748
margin: 0;
4849
}
49-
p {
50+
h2 {
5051
font-size: 2rem;
5152
font-weight: 600;
5253
line-height: 2rem;

0 commit comments

Comments
 (0)