Skip to content

Commit 35675fd

Browse files
Update about me, remove commissions
1 parent d7339a2 commit 35675fd

File tree

6 files changed

+19
-43
lines changed

6 files changed

+19
-43
lines changed

src/build.gleam

-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import lustre/element.{type Element}
55
import lustre/ssg
66
import website/data/projects
77
import website/page/about
8-
import website/page/commissions
98
import website/page/contact
109
import website/page/index
1110
import website/page/project
@@ -18,7 +17,6 @@ pub fn main() {
1817
ssg.new("./priv")
1918
|> ssg.add_static_route("/", index.view())
2019
|> add_static_route("/about", about.view())
21-
|> add_static_route("/commissions", commissions.view())
2220
|> add_static_route("/contact", contact.view())
2321
|> ssg.add_static_dir("./static")
2422
|> add_static_route("/projects", projects_page.view(categories))

src/website/component/header.gleam

-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ type PageRoute {
1111
const pages = [
1212
PageRoute("About", "/about"),
1313
PageRoute("Projects", "/projects"),
14-
PageRoute("Commissions", "/commissions"),
1514
PageRoute("Contact me", "/contact"),
1615
]
1716

src/website/page/about.gleam

+15-8
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,24 @@ import website/component
55
pub fn view() {
66
component.text_page("About", "About me", [
77
html.span([attribute.class("text-2xl font-bold")], [
8-
html.text(
9-
"I'm Gears; a programmer, Minecraft enthusiast, YouTuber and nerd.",
10-
),
8+
html.text("I'm Gears, an amateur software developer, and general nerd."),
119
]),
1210
html.br([]),
1311
html.br([]),
1412
html.text(
15-
"The programming language I know most about, and therefore use the most, is JavaScript/TypeScript. However, I also know Ruby, MCFunction and Golang, and dabble in Rust and Python.",
13+
"I love programming languages. I am currently part of the core team developing the ",
1614
),
15+
html.a(
16+
[
17+
attribute.target("_blank"),
18+
attribute.class("text-blue-500 underline"),
19+
attribute.href("https://gleam.run"),
20+
],
21+
[html.text("Gleam programming language")],
22+
),
23+
html.text("."),
1724
html.br([]),
18-
html.text("I make "),
25+
html.text("I also used to make "),
1926
html.a(
2027
[
2128
attribute.target("_blank"),
@@ -25,11 +32,11 @@ pub fn view() {
2532
[html.text("YouTube videos")],
2633
),
2734
html.text(
28-
" about my ongoing struggle with Minecraft datapacks, as well as other fun Minecraft content.",
35+
" about Minecraft datapacks, and related topics, however that is now inactive. Maybe I'll pick it up again one day.",
2936
),
3037
html.br([]),
3138
html.text(
32-
"Projects I've made include a programming language with Minecraft datapacks (not alone), and a Datapack Package Manager.",
39+
"Projects I've made include a programming language with Minecraft datapacks, and a Datapack Package Manager.",
3340
),
3441
html.br([]),
3542
html.text("More information on the "),
@@ -40,6 +47,6 @@ pub fn view() {
4047
],
4148
[html.text("projects")],
4249
),
43-
html.text("page."),
50+
html.text(" page."),
4451
])
4552
}

src/website/page/commissions.gleam

-23
This file was deleted.

src/website/page/contact.gleam

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import lustre/element/html
33
import website/component
44

55
pub fn view() {
6-
component.text_page("Contact", "Contact me", [
6+
component.text_page("Contact me", "Contact me", [
77
html.text(
88
"If you have questions you want to ask, or want to reach out to me, you can send me an email at ",
99
),

src/website/page/index.gleam

+3-8
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ import website/component
44

55
pub fn view() {
66
component.text_page("Home", "Hello and welcome to my website!", [
7-
html.text("I am Gears, a software developer and Minecraft YouTuber."),
7+
html.text(
8+
"I am Gears, an amateur software developer, investigating functional programming, compilers and Minecraft datapacks.",
9+
),
810
html.br([]),
911
html.text("More about me in the "),
1012
html.a([attribute.href("/about/"), attribute.class("underline font-bold")], [
@@ -19,13 +21,6 @@ pub fn view() {
1921
),
2022
html.text("."),
2123
html.br([]),
22-
html.text("For information on Minecraft datapack commissions, see "),
23-
html.a(
24-
[attribute.href("/commissions/"), attribute.class("underline font-bold")],
25-
[html.text("commissions")],
26-
),
27-
html.text("."),
28-
html.br([]),
2924
html.text("If you have more questions, you can "),
3025
html.a(
3126
[attribute.href("/contact/"), attribute.class("underline font-bold")],

0 commit comments

Comments
 (0)