13 lines
487 B
TypeScript
13 lines
487 B
TypeScript
export const Navigation = () => {
|
|
return (
|
|
<>
|
|
<nav class="md:hidden h-14 w-screen bg-emerald-500 flex items-center">
|
|
<button>
|
|
<img class="ml-4" src="/img/menu.svg" alt="" />
|
|
</button>
|
|
</nav>
|
|
<nav class="max-md:hidden h-14 w-screen bg-emerald-500"></nav>
|
|
</>
|
|
);
|
|
};
|
|
// Navigation component contains the NavigationBar component via import from partial and a screen height and screen width big absolute layer that is shown via signals
|