diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000..0ca45c8 Binary files /dev/null and b/.DS_Store differ diff --git a/rawleydotxyz.ml b/rawleydotxyz.ml index 20a7022..7865023 100644 --- a/rawleydotxyz.ml +++ b/rawleydotxyz.ml @@ -14,6 +14,7 @@ let () = @@ Dream.logger @@ Dream.router [ Dream.get "/static/**" @@ Dream.static "static"; + Dream.get "/favicon.ico" @@ Dream.from_filesystem "static" "favico.png"; Dream.get "/" @@ (fun _ -> Render.render_index ()); Dream.get "/resume" @@ Dream.from_filesystem "html" "resume.html"; Dream.get "/philosophy" @@ Dream.from_filesystem "html" "philosophy.html"; diff --git a/static/favico.png b/static/favico.png new file mode 100644 index 0000000..1e19b9e Binary files /dev/null and b/static/favico.png differ