Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
8a052db
create navbar
pbandjs1 Jan 27, 2026
1db5f4e
create pages in home and dashboard
pbandjs1 Jan 27, 2026
e1e7bec
replace chakra-ui reference with basic html
pbandjs1 Jan 28, 2026
735d59e
delete unnecessary link on navbar
pbandjs1 Jan 28, 2026
57d7fc0
create link for profile and button to signout
pbandjs1 Jan 28, 2026
afb48d3
adjust navbar to better fit requirements
pbandjs1 Jan 28, 2026
9c0b270
install chakra
pbandjs1 Jan 29, 2026
838e12a
setup chakra-ui for app router
pbandjs1 Jan 29, 2026
e5fdb3d
convert Navbar to use all Chakra-ui components
pbandjs1 Jan 29, 2026
62a6edb
delete unnecessary textStyles
pbandjs1 Jan 29, 2026
3e55f7c
create navbar
pbandjs1 Jan 27, 2026
9362c33
create pages in home and dashboard
pbandjs1 Jan 27, 2026
c00dcd8
replace chakra-ui reference with basic html
pbandjs1 Jan 28, 2026
6618b09
delete unnecessary link on navbar
pbandjs1 Jan 28, 2026
addbfbe
create link for profile and button to signout
pbandjs1 Jan 28, 2026
e8faf05
adjust navbar to better fit requirements
pbandjs1 Jan 28, 2026
d78727d
install chakra
pbandjs1 Jan 29, 2026
093093a
setup chakra-ui for app router
pbandjs1 Jan 29, 2026
f75db9b
convert Navbar to use all Chakra-ui components
pbandjs1 Jan 29, 2026
8a78adc
delete unnecessary textStyles
pbandjs1 Jan 29, 2026
cafec23
Merge branch 'navbar' of https://github.com/hack4impact-calpoly/kids-…
pbandjs1 Jan 29, 2026
0f8ffcc
fix: rebase
pbandjs1 Jan 29, 2026
3d2a3d6
fix: prettier
pbandjs1 Jan 29, 2026
91221d7
Merge branch 'develop' into navbar
kaseyliu Feb 1, 2026
f9c2167
delete unused components
pbandjs1 Feb 3, 2026
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
23 changes: 22 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,10 @@
"@emotion/react": "^11.14.0",
"mongoose": "^8",
"next": "^14.2.35",
"next-themes": "^0.4.6",
"react": "^18",
"react-dom": "^18"
"react-dom": "^18",
"react-icons": "^5.5.0"
},
"devDependencies": {
"@types/node": "^20",
Expand Down
1 change: 1 addition & 0 deletions src/app/dashboard/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export default function Dashboard() {}
1 change: 1 addition & 0 deletions src/app/home/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export default function Home() {}
27 changes: 26 additions & 1 deletion src/components/Navbar.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,28 @@
import { Button, Link, Text } from "@chakra-ui/react";

export default function Navbar() {
return <div>Navbar</div>;
return (
<header className="navbar">
<nav className="navList">
<Link href="/home">
<Button className="home">
<Text>Home</Text>
</Button>
</Link>
<Link href="/dashboard">
<Button className="dashboard">
<Text>Dashboard</Text>
</Button>
</Link>
<Link href="/profile">
<Button className="profile">
<Text>Profile</Text>
</Button>
</Link>
<Button className="signOut" onClick={undefined}>
<Text>Sign-out</Text>
</Button>
</nav>
</header>
);
}