Skip to content

Commit

Permalink
feat: remove header buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
jsun969 committed Sep 19, 2024
1 parent cea284c commit a605a32
Showing 1 changed file with 1 addition and 25 deletions.
26 changes: 1 addition & 25 deletions src/components/Header.tsx
Original file line number Diff line number Diff line change
@@ -1,35 +1,11 @@
import {
Button,
Navbar,
NavbarBrand,
NavbarContent,
NavbarItem,
} from '@nextui-org/react';
import { Navbar, NavbarBrand } from '@nextui-org/react';

export const Header = () => {
return (
<Navbar isBordered maxWidth="xl">
<NavbarBrand>
<h1 className="font-bold text-inherit">My Timetable</h1>
</NavbarBrand>
<NavbarContent justify="end">
<NavbarItem>
<Button
color="primary"
variant="flat"
isIconOnly
href="https://csclub.org.au"
as="a"
>
🦆
</Button>
</NavbarItem>
<NavbarItem>
<Button color="primary" variant="flat" isIconOnly>
⚙️
</Button>
</NavbarItem>
</NavbarContent>
</Navbar>
);
};

0 comments on commit a605a32

Please sign in to comment.