My website lesbian.skin
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Create homepage

+58 -2
+58 -2
src/website.gleam
··· 140 140 ]) 141 141 } 142 142 143 - fn view_home(model: Model) -> Element(Msg) { 144 - html.h1([], [element.text("Homepage")]) 143 + const home_style: List(#(String, String)) = [ 144 + #("background-color", "#cae4e7"), #("border-radius", "1em"), 145 + #("padding", "1em"), #("margin-bottom", "1em"), #("font-size", "1.25em"), 146 + ] 147 + 148 + fn view_home(_model: Model) -> Element(Msg) { 149 + html.div([attribute.style(home_style)], [ 150 + html.p([], [ 151 + element.text( 152 + "Hi! I'm Naomi (or Mia), a trans girl from the UK who loves to code! I mostly make Minecraft mods, but have started 153 + to begin other projects like ", 154 + ), 155 + common.link("Sheetr", "https://sheetr.app/"), 156 + element.text(" and "), 157 + common.link("Lilypad", "https://codeberg.org/naomi/lilypad"), 158 + element.text( 159 + ". Both projects are in their infancy, but I hope that they can both become useful to someone 160 + out there!", 161 + ), 162 + ]), 163 + html.p([], [ 164 + element.text( 165 + "I absolutely love learning new languages, so here is what I know:", 166 + ), 167 + cluster.of(html.div, [attribute.style([#("display", "flex"), #("gap", "5em")])], [ 168 + ui.stack([], [ 169 + html.h3([], [element.text("Proficient")]), 170 + html.ul([], [ 171 + html.li([], [element.text("⭐ Gleam")]), 172 + html.li([], [element.text("☕ Java")]), 173 + html.li([], [element.text("📜 JavaScript")]), 174 + html.li([], [element.text("🐍 Python")]), 175 + html.li([], [element.text("❓mcfunction")]), 176 + ]), 177 + ]), 178 + ui.stack([], [ 179 + html.h3([], [element.text("Learning")]), 180 + html.ul([], [ 181 + html.li([], [element.text("🦀 Rust")]), 182 + html.li([], [element.text("🟦 Go")]), 183 + html.li([], [element.text("🎮 C#")]), 184 + html.li([], [element.text("💀 C++")]), 185 + ]), 186 + ]), 187 + ui.stack([], [ 188 + html.h3([], [element.text("Want to learn")]), 189 + html.ul([], [ 190 + html.li([], [element.text("⚡ Zig")]), 191 + html.li([], [element.text("♻️ Kotlin")]), 192 + ]), 193 + ]), 194 + ]), 195 + ]), 196 + // html.p([], [ 197 + // element.text("As of this coming September, I will be studying a BSc in Computer Games Programming @ "), 198 + // common.link("Staffs", "https://staffs.ac.uk/") 199 + // ]) 200 + ]) 145 201 } 146 202 147 203 const icon_style: List(#(String, String)) = [