Skip to content
Merged
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
10 changes: 8 additions & 2 deletions src/components/Navbars/DefaultNavbar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -326,13 +326,19 @@ function DefaultNavbar({
>
{ ({ TransitionProps }) => (
<Grow { ...TransitionProps }>
<MKBox borderRadius="lg">
<MKBox borderRadius="lg" bgcolor="white">
<MKTypography variant="h1" color="white">
<Icon ref={ setArrowRef } sx={ { mt: -3 } }>
arrow_drop_up
</Icon>
</MKTypography>
<MKBox shadow="lg" borderRadius="lg" p={ 2 } mt={ 2 }>
<MKBox
shadow="lg"
borderRadius="lg"
p={ 2 }
mt={ 2 }
sx={ { backgroundColor: "#fff" } }
>
{ renderRoutes }
</MKBox>
</MKBox>
Expand Down
15 changes: 15 additions & 0 deletions src/routes.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,21 @@ import ProjectOfInterest from "./pages/ProjectOfInterest";
import { AddModerator } from "@mui/icons-material";

const routes = [
{
name: "Demo",
key: "Demo",
icon: <Icon>play_circle</Icon>,
collapse: [
{
name: "ART",
href: "https://art.o31e.com/"
},
{
name: "Promtptfoo",
href: "https://promptfoo.o31e.com/"
},
],
},
{
name: "Projects Of Interest",
key: "Project-of-Interest",
Expand Down
Loading