Skip to content
This repository has been archived by the owner on Feb 23, 2025. It is now read-only.

Fixed schnuppern farben #12

Open
wants to merge 6 commits into
base: bombastic
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 27 additions & 15 deletions pfadimh/src/app/Nav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,21 +43,33 @@ const Nav = () => {
</NavbarContent>

<NavbarContent className="hidden sm:flex gap-4" justify="center">
<NavbarItem>
<Link color="foreground" href="/" aria-current="page">
HOME
</Link>
</NavbarItem>
<NavbarItem isActive>
<Link
color="foreground"
as="a"
href="/Schnuppern"
aria-current="page"
>
SCHNUPPERN
</Link>
</NavbarItem>
<Button
disableRipple
className="p-0 bg-transparent data-[hover=true] hover:bg-[#F79F00]"
radius="sm"
>
<NavbarItem>
<Link color="foreground" href="/" aria-current="page">
HOME
</Link>
</NavbarItem>
</Button>
<Button
disableRipple
className="p-0 bg-transparent data-[hover=true] hover:bg-[#F79F00]"
radius="sm"
>
<NavbarItem>
<Link
color="foreground"
as="a"
href="/Schnuppern"
aria-current="page"
>
SCHNUPPERN
</Link>
</NavbarItem>
</Button>

<Dropdown>
<DropdownTrigger>
Expand Down
2 changes: 1 addition & 1 deletion pfadimh/src/app/Schnuppern/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export default function schnuppern() {

<Select
variant="underlined"
label="Dein geschlecht:"
label="Dein Geschlecht:"
placeholder=""
className="w-full sm:max-w-xs"
>
Expand Down