|
@@ -7,30 +7,31 @@
|
|
|
import Button from "$lib/components/ui/button/button.svelte";
|
|
|
</script>
|
|
|
|
|
|
-<header class="fixed top-0 flex justify-between items-center p-3 w-full bg-background border-b mb-32">
|
|
|
+<header
|
|
|
+ class="fixed top-0 flex justify-between items-center p-3 w-full bg-background border-b mb-32"
|
|
|
+>
|
|
|
<div class="flex items-center gap-4">
|
|
|
<button on:click={() => goto("/#")}>
|
|
|
<h1 class="text-xl font-bold">
|
|
|
<i class="fa-solid fa-flask"></i> RhazesEMR
|
|
|
</h1>
|
|
|
</button>
|
|
|
- <button on:click={() => window.location.href = "https://docs.rhazesemr.info"}>
|
|
|
- <h1 class="text-lg">
|
|
|
- Docs
|
|
|
- </h1>
|
|
|
+ <button
|
|
|
+ on:click={() => (window.location.href = "https://docs.rhazesemr.info")}
|
|
|
+ >
|
|
|
+ <h1 class="text-lg">Docs</h1>
|
|
|
</button>
|
|
|
<button on:click={() => goto("/download")}>
|
|
|
- <h1 class="text-lg">
|
|
|
- Download
|
|
|
- </h1>
|
|
|
+ <h1 class="text-lg">Download</h1>
|
|
|
</button>
|
|
|
<button on:click={() => goto("/features")}>
|
|
|
- <h1 class="text-lg">
|
|
|
- Features
|
|
|
- </h1>
|
|
|
+ <h1 class="text-lg">Features</h1>
|
|
|
+ </button>
|
|
|
+ <button on:click={() => goto("/about")}>
|
|
|
+ <h1 class="text-lg">About</h1>
|
|
|
</button>
|
|
|
</div>
|
|
|
-
|
|
|
+
|
|
|
<div class="flex items-center gap-2">
|
|
|
<a href="https://github.com/RhazesEMR">
|
|
|
<Button variant="outline" size="icon">
|