Skip to content

Commit

Permalink
Removed Bootstrap (#143)
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobellerbrock authored Dec 3, 2024
1 parent 9fce72e commit 81f9cf5
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 137 deletions.
1 change: 0 additions & 1 deletion apps/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@
"pusher-js": "8.4.0-rc2",
"react": "18.3.1",
"react-aria": "^3.33.1",
"react-bootstrap": "^2.10.4",
"react-confetti": "^6.1.0",
"react-dom": "18.3.1",
"react-dropzone": "^14.2.3",
Expand Down
5 changes: 1 addition & 4 deletions apps/web/src/app/admin/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,7 @@ export default async function AdminLayout({ children }: AdminLayoutProps) {
<ClientToast />
<div className="fixed z-20 grid h-16 w-full grid-cols-2 bg-nav px-5">
<div className="flex items-center gap-x-4">
<Link
href={"/"}
className="mr-5 flex items-center gap-x-2"
>
<Link href={"/"} className="mr-5 flex items-center gap-x-2">
<Image
src={c.icon.svg}
alt={c.hackathonName + " Logo"}
Expand Down
8 changes: 4 additions & 4 deletions apps/web/src/lib/utils/client/shared.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { redirect } from "next/navigation";
export function getClientTimeZone(vercelIPTimeZone: string | null) {
return vercelIPTimeZone ?? Intl.DateTimeFormat().resolvedOptions().timeZone;
}
export async function clientLogOut(){
"use server";
redirect("/");
};
export async function clientLogOut() {
"use server";
redirect("/");
}
136 changes: 8 additions & 128 deletions pnpm-lock.yaml

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

0 comments on commit 81f9cf5

Please sign in to comment.