+5
src/website/common.gleam
+5
src/website/common.gleam
···
47
47
html.head([], [
48
48
html.meta([attr.attribute("charset", "UTF-8")]),
49
49
html.title([], page <> " | Naomi Roberts"),
50
+
html.link([attr.rel("preconnect"), attr.href("https://fonts.bunny.net")]),
51
+
html.link([
52
+
attr.rel("stylesheet"),
53
+
attr.href("https://fonts.bunny.net/css?family=almarai:400"),
54
+
]),
50
55
]),
51
56
style.body_query(),
52
57
html.body([attr.class("body-margin"), style.body_styles()], [
+6
-1
src/website/style.gleam
+6
-1
src/website/style.gleam
···
20
20
}
21
21
22
22
pub fn body_styles() {
23
-
attr.styles([#("color", "black"), #("container-type", "size")])
23
+
attr.styles([
24
+
#("color", "black"),
25
+
#("container-type", "size"),
26
+
#("font-family", "'Almarai', sans-serif"),
27
+
#("font-size", "18px"),
28
+
])
24
29
}
25
30
26
31
pub fn navbar() {