-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Major updates to the form rendering and download options
- Loading branch information
Showing
4 changed files
with
446 additions
and
934 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" /> | ||
</> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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="" /> | ||
</> | ||
); | ||
} |
Oops, something went wrong.