diff --git a/public/img/me.jpg b/public/img/me.jpg
deleted file mode 100644
index e78e422..0000000
Binary files a/public/img/me.jpg and /dev/null differ
diff --git a/public/img/me.webp b/public/img/me.webp
new file mode 100644
index 0000000..892723a
Binary files /dev/null and b/public/img/me.webp differ
diff --git a/src/routes/index.lisp b/src/routes/index.lisp
index 0ef2dd5..84b737d 100644
--- a/src/routes/index.lisp
+++ b/src/routes/index.lisp
@@ -15,7 +15,7 @@
 (defcomp ~page ()
   (hsx
    (section :class "flex flex-col items-center justify-center h-full"
-     (img :src "/img/me.jpg" :alt "Profile Picture" :class "size-40 rounded rounded-full border shadow-lg")
+     (img :src "/img/me.webp" :alt "Profile Picture" :class "size-40 rounded rounded-full border shadow-lg")
      (div :class "flex flex-col items-center gap-2 py-6"
        (h1 :class "font-bold text-2xl"
          "Akira Tempaku")
@@ -26,6 +26,7 @@
          :for (name url) :in *links*
          :collect (hsx (a :href url :target "_blank" :class "text-lg hover:underline"
                          name)))))))
+
 (defun handle-get (params)
   (declare (ignore params))
   (~page))