Skip to content

Commit

Permalink
Major updates to the form rendering and download options
Browse files Browse the repository at this point in the history
  • Loading branch information
nulzo committed Oct 31, 2023
1 parent 2e75d4c commit 41c14ec
Show file tree
Hide file tree
Showing 4 changed files with 446 additions and 934 deletions.
4 changes: 2 additions & 2 deletions frontend-ts/src/components/navigation/Sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ import {
LayoutIcon,
} from "lucide-react";

const isAdmin = false;
const isTutor = true;
const isAdmin = true;
const isTutor = false;
const isStudent = false;
const isDeveloper = false;

Expand Down
17 changes: 16 additions & 1 deletion frontend-ts/src/views/HoursView.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
import Header from "@/components/typography/Header";
import { Separator } from "@/components/ui/separator";

export default function HoursView() {
return <></>;
return (
<>
<Header
text="Hours of Operation"
subtext={
<>
See what hours the tutoring center are open, and see if any schedling changes have occured.
</>
}
/>
<Separator className="mb-4" />
</>
);
}
17 changes: 16 additions & 1 deletion frontend-ts/src/views/admin/AdminBlame.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
import Header from "@/components/typography/Header";
import { Separator } from "@/components/ui/separator";

export default function AdminBlame() {
return <div>Hey</div>;
return (
<>
<Header
text="Preen Data"
subtext={
<>
Preen through your data to find anything you desire.
</>
}
/>
<Separator className="" />
</>
);
}
Loading

0 comments on commit 41c14ec

Please sign in to comment.