2 Коміти 7ff41754ba ... 30e61e506d

Автор SHA1 Опис Дата
  Naz 30e61e506d ✨feat: link to my gogs instance instead of Github 2 тижнів тому
  Naz 3527df6fb6 ✨feat: replace lucide icons and use fa instead 2 тижнів тому
1 змінених файлів з 7 додано та 6 видалено
  1. 7 6
      src/routes/+page.svelte

+ 7 - 6
src/routes/+page.svelte

@@ -2,31 +2,32 @@
   import { goto } from "$app/navigation";
 
   import Button from "$lib/components/ui/button/button.svelte";
-  import { Github, Download, Book } from "lucide-svelte";
 </script>
 
 <main class="flex flex-grow flex-col items-center mt-64 md:mt-32">
   <img class="rounded-md" src="./favicon.png" alt="Logo" width="128" />
   <p class="m-3 text-xl">Rhazes EMR</p>
-  <p class="m-3 text-center">Modern and User-Friendly Electronic Medical Record</p>
+  <p class="m-3 text-center">
+    Modern and User-Friendly Electronic Medical Record
+  </p>
 
   <div class="flex flex-col md:flex-row">
     <Button class="text-lg m-1 p-5" onclick={() => goto("/download")}
-      ><Download />Download</Button
+      ><span class="fa-solid fa-download"></span>Download</Button
     >
     <Button
       class="text-lg m-1 p-5"
       variant="secondary"
-      href="https://github.rhazesemr.info"
+      href="https://git.rhazesemr.info"
     >
-      <Github /> Source Code</Button
+      <span class="fa-solid fa-code-branch"></span>Source Code</Button
     >
     <Button
       class="text-lg m-1 p-5"
       variant="secondary"
       href="https://docs.rhazesemr.info"
     >
-      <Book /> Documentation</Button
+      <span class="fa-solid fa-book"></span>Documentation</Button
     >
   </div>
 </main>