wip
This commit is contained in:
26
playground/src/lib/components/Header.svelte
Normal file
26
playground/src/lib/components/Header.svelte
Normal file
@@ -0,0 +1,26 @@
|
||||
<script lang="ts">
|
||||
// import { CodeIcon, ArrowRightIcon } from "lucide-svelte";
|
||||
</script>
|
||||
|
||||
<header class="sticky top-0 z-10 border-b border-gray-200 bg-white/80 backdrop-blur-sm">
|
||||
<div class="container mx-auto px-6 py-4">
|
||||
<div class="flex items-center justify-between">
|
||||
<div class="flex items-center gap-3">
|
||||
<div class="rounded-lg bg-black p-2">
|
||||
<!-- <CodeIcon class="h-5 w-5 text-white" /> -->
|
||||
</div>
|
||||
<div>
|
||||
<h1 class="text-2xl font-bold text-black">Marka</h1>
|
||||
<p class="text-sm text-gray-600">Bidirectional Markdown ↔ JSON Parser</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="hidden items-center gap-2 text-sm text-gray-500 md:flex">
|
||||
<span>Template</span>
|
||||
<!-- <ArrowRightIcon class="w-4 h-4" /> -->
|
||||
<span>Markdown</span>
|
||||
<!-- <ArrowRightIcon class="w-4 h-4" /> -->
|
||||
<span>JSON</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
Reference in New Issue
Block a user