Skip to content

Commit

Permalink
lmao
Browse files Browse the repository at this point in the history
  • Loading branch information
Abh1noob committed Mar 14, 2024
1 parent 3c4550f commit 4b803a8
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 25 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import React from "react";
const Page = () => {
return (
<div className="flex h-screen w-screen items-center justify-center bg-black">
<TimelineComponent count={2} />
<TimelineComponent count={0} />
</div>
);
};
Expand Down
2 changes: 1 addition & 1 deletion devsoc24-portal-fe/src/app/home/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ export default function HomePage() {
{showModal === "leave" && <LeaveTeam />}
{showModal === "kick" && <Kick />}
<div className="mt-4 flex h-fit w-screen flex-col justify-between gap-4 px-4">
<TimelineComponent count={4} />
<TimelineComponent count={0} />
</div>
<div className="mt-4 flex h-fit w-screen flex-col justify-between gap-4 overflow-y-auto px-4 md:flex-row lg:h-[85%]">
{team ? (
Expand Down
3 changes: 0 additions & 3 deletions devsoc24-portal-fe/src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,6 @@ export default function RootLayout({
<meta property="og:site_name" content={"DEVSOC'24 | Portal"} />
</head>
<body className={`font-sans ${inter.className}`}>
<div className="flex h-auto w-[100%] items-center justify-center bg-[#2463EB] font-bold">
*For Internal Testing Purposes Only*
</div>
<ThemeProvider
attribute="class"
defaultTheme="light"
Expand Down
20 changes: 0 additions & 20 deletions devsoc24-portal-fe/src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,26 +40,6 @@ export default function Page() {

return (
<main className="flex min-h-screen flex-col items-center bg-[url('/images/bg.svg')] bg-cover bg-no-repeat">
{showModal ? (
<>
<div className="fixed left-0 top-0 z-[100] flex h-screen w-screen items-center justify-center bg-black/40">
<div className="relative flex h-fit min-h-[100px] w-fit min-w-[200px] flex-col rounded-lg bg-white ">
<div className="flex w-full rounded-t-lg bg-black/30 px-2">
<div className="absolute right-2 top-1 " onClick={toggleModal}>
<LucideXSquare color="black" opacity={60} className="" />
</div>
<div className="p-1">Notice</div>
</div>
<div className="h-full w-full break-words p-3">
This Website is under developement and is in internal testing
phase only
</div>
</div>
</div>
</>
) : (
<></>
)}
<div className="flex h-[10%] w-full items-center justify-between bg-background px-6 py-2">
<Logo className="h-9/10 w-auto" />
</div>
Expand Down

0 comments on commit 4b803a8

Please sign in to comment.