Skip to content

Commit

Permalink
Merge pull request #119 from acm-ucr/SafeDuck/WaiverForm
Browse files Browse the repository at this point in the history
Waiver Form, Social Media component
  • Loading branch information
SafeDuck authored Nov 12, 2024
2 parents a896afa + 4a310ab commit 84bef42
Show file tree
Hide file tree
Showing 9 changed files with 356 additions and 13 deletions.
29 changes: 27 additions & 2 deletions package-lock.json

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

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
"next": "^14.2.10",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hot-toast": "^2.4.1",
"react-icons": "^5.3.0"
},
"devDependencies": {
Expand Down
17 changes: 17 additions & 0 deletions public/home/socialMedia.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 5 additions & 1 deletion src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import {
import { ReactQueryClientProvider } from "@/utils/react-query";
import Navigation from "@/components/Navigation";
import Footer from "@/components/Footer";
import { Toaster } from "react-hot-toast";

const archivo_narrow = Archivo_Narrow({
subsets: ["latin"],
Expand Down Expand Up @@ -48,7 +49,10 @@ export default function RootLayout({ children }: LayoutProps) {
>
<Navigation />
<div className="flex w-full flex-col items-center justify-center bg-hlg-dark-gray text-white">
<ReactQueryClientProvider>{children}</ReactQueryClientProvider>
<ReactQueryClientProvider>
<Toaster />
{children}
</ReactQueryClientProvider>
</div>
<Footer />
</body>
Expand Down
Loading

0 comments on commit 84bef42

Please sign in to comment.