Style upgrade, added minor nav bar, set up some basic routes and began work on components and components system.
This commit is contained in:
parent
a0be72856c
commit
5eaf5f319f
14 changed files with 204 additions and 117 deletions
13
components/layout/Header.tsx
Normal file
13
components/layout/Header.tsx
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import Hyperlink from "@/components/ui/Hyperlink";
|
||||
|
||||
export default function Header() {
|
||||
return (
|
||||
<header className="w-full h-full bg-slate-500 dark:bg-slate-900 flex items-center justify-between">
|
||||
<nav className="flex items-center justify-around w-full h-full px-6 py-4">
|
||||
<Hyperlink name={"Git Repos"} link={"dagemark.se/git"} />
|
||||
<Hyperlink name={"Nextcloud Drive"} link={"dagemark.se/drive"} />
|
||||
<Hyperlink name={"Game Servers"} link={"gserver.dagemark.se"} />
|
||||
</nav>
|
||||
</header>
|
||||
)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue