-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add navbar with logo, add dark-mode toggle button
- Loading branch information
Showing
12 changed files
with
476 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,4 +14,4 @@ updates: | |
all: | ||
applies-to: version-updates | ||
patterns: | ||
- "*" | ||
- '*' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
export const prerender = true; | ||
export const prerender = true; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,31 @@ | ||
<script> | ||
import { Banner } from 'flowbite-svelte'; | ||
import { | ||
P, | ||
Banner, | ||
Navbar, | ||
NavBrand, | ||
NavLi, | ||
NavUl, | ||
NavHamburger, | ||
DarkMode | ||
} from 'flowbite-svelte'; | ||
import logo_light from '$lib/assets/mondey_light.svg'; | ||
import logo_dark from '$lib/assets/mondey_dark.svg'; | ||
</script> | ||
|
||
<div class="p-8"> | ||
<Banner> | ||
This is a work-in-progress prototype frontend for the MONDEY website | ||
</Banner> | ||
</div> | ||
<Banner><P>This is a work-in-progress prototype frontend for the MONDEY website</P></Banner> | ||
<Navbar> | ||
<NavBrand href="/"> | ||
<img src={logo_light} class="block h-16 dark:hidden" alt="MONDEY Logo" /> | ||
<img src={logo_dark} class="hidden h-16 dark:block" alt="MONDEY Logo" /> | ||
</NavBrand> | ||
<NavHamburger /> | ||
<NavUl> | ||
<NavLi href="/" active={true}>Home</NavLi> | ||
<NavLi href="/">Downloads</NavLi> | ||
<NavLi href="/">Aktuelles</NavLi> | ||
<NavLi href="/">Kontakt</NavLi> | ||
</NavUl> | ||
<DarkMode /> | ||
</Navbar> | ||
<div class="flex flex-col items-center justify-center"></div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters