undefined - Initial Deployment
Browse files- README.md +6 -4
- index.html +32 -19
README.md
CHANGED
|
@@ -1,10 +1,12 @@
|
|
| 1 |
---
|
| 2 |
-
title:
|
| 3 |
-
emoji:
|
| 4 |
colorFrom: blue
|
| 5 |
-
colorTo:
|
| 6 |
sdk: static
|
| 7 |
pinned: false
|
|
|
|
|
|
|
| 8 |
---
|
| 9 |
|
| 10 |
-
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
|
| 1 |
---
|
| 2 |
+
title: header
|
| 3 |
+
emoji: 🐳
|
| 4 |
colorFrom: blue
|
| 5 |
+
colorTo: green
|
| 6 |
sdk: static
|
| 7 |
pinned: false
|
| 8 |
+
tags:
|
| 9 |
+
- deepsite
|
| 10 |
---
|
| 11 |
|
| 12 |
+
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
index.html
CHANGED
|
@@ -1,19 +1,32 @@
|
|
| 1 |
-
<
|
| 2 |
-
<
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
<
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<script src="https://cdn.tailwindcss.com"></script>
|
| 2 |
+
<script src="https://cdnjs.cloudflare.com/ajax/libs/material-ui/4.12.4/index.js"></script>
|
| 3 |
+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/material-symbols@0.32.0/index.min.css">
|
| 4 |
+
|
| 5 |
+
<header class="mx-auto bg-white min-w-screen ">
|
| 6 |
+
<div class="grid grid-cols-3 w-full gap-0 items-center">
|
| 7 |
+
<!-- Navigation icon -->
|
| 8 |
+
<div class="grid justify-self-start">
|
| 9 |
+
<button class="rounded-full p-2 hover:bg-primary-container-hover transition-colors">
|
| 10 |
+
<span class="material-symbols-outlined text-2xl">menu</span>
|
| 11 |
+
</button>
|
| 12 |
+
</div>
|
| 13 |
+
|
| 14 |
+
<!-- Title -->
|
| 15 |
+
<div class="grid justify-self-center">
|
| 16 |
+
<h1 class="text-3xl font-bold">Material M3</h1>
|
| 17 |
+
</div>
|
| 18 |
+
|
| 19 |
+
<!-- Action icons -->
|
| 20 |
+
<div class="grid justify-self-end grid-flow-col gap-2">
|
| 21 |
+
<button class="rounded-full p-2 hover:bg-primary-container-hover transition-colors">
|
| 22 |
+
<span class="material-symbols-outlined text-2xl">search</span>
|
| 23 |
+
</button>
|
| 24 |
+
<button class="rounded-full p-2 hover:bg-primary-container-hover transition-colors">
|
| 25 |
+
<span class="material-symbols-outlined text-2xl">favorite</span>
|
| 26 |
+
</button>
|
| 27 |
+
<button class="rounded-full p-2 hover:bg-primary-container-hover transition-colors">
|
| 28 |
+
<span class="material-symbols-outlined text-2xl">account_circle</span>
|
| 29 |
+
</button>
|
| 30 |
+
</div>
|
| 31 |
+
</div>
|
| 32 |
+
</header>
|