Add header
This commit is contained in:
parent
4abe4ab7e0
commit
f3be0eb4ae
@ -1,26 +1,25 @@
|
|||||||
import { useLocation } from "@solidjs/router";
|
import type { Component } from "solid-js";
|
||||||
import type { Component } from "solid-js"
|
|
||||||
|
|
||||||
|
const Header: Component = () => (
|
||||||
|
<header>
|
||||||
type HeaderItemProps = {
|
<nav class="bg-white border-gray-200 px-4 lg:px-6 py-2.5 dark:bg-gray-800">
|
||||||
text: string;
|
<div class="flex flex-wrap justify-between items-center mx-auto max-w-screen-xl">
|
||||||
target: string;
|
<a href="/" class="flex items-center">
|
||||||
active: boolean;
|
<span class="self-center text-xl font-semibold whitespace-nowrap dark:text-white">
|
||||||
}
|
Palette Switcher
|
||||||
|
</span>
|
||||||
const Header: Component = () => <header>
|
</a>
|
||||||
<nav class="bg-white border-gray-200 px-4 lg:px-6 py-2.5 dark:bg-gray-800">
|
<div class="flex items-center lg:order-2">
|
||||||
<div class="flex flex-wrap justify-between items-center mx-auto max-w-screen-xl">
|
<a
|
||||||
<a href="/" class="flex items-center">
|
href="/about"
|
||||||
<span class="self-center text-xl font-semibold whitespace-nowrap dark:text-white">Palette Switcher</span>
|
class="text-gray-800 dark:text-white hover:bg-gray-50 focus:ring-4 focus:ring-gray-300 font-medium rounded-lg text-sm px-4 lg:px-5 py-2 lg:py-2.5 mr-2 dark:hover:bg-gray-700 focus:outline-none dark:focus:ring-gray-800"
|
||||||
</a>
|
>
|
||||||
<div class="flex items-center lg:order-2">
|
About
|
||||||
<a href="/about" class="text-gray-800 dark:text-white hover:bg-gray-50 focus:ring-4 focus:ring-gray-300 font-medium rounded-lg text-sm px-4 lg:px-5 py-2 lg:py-2.5 mr-2 dark:hover:bg-gray-700 focus:outline-none dark:focus:ring-gray-800">About</a>
|
</a>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</nav>
|
||||||
</nav>
|
</header>
|
||||||
</header>
|
);
|
||||||
|
|
||||||
|
export default Header;
|
||||||
export default Header;
|
|
||||||
|
Loading…
Reference in New Issue
Block a user