-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cdd0cc9
commit cec0cdb
Showing
17 changed files
with
634 additions
and
136 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
import "../globals.css"; | ||
import { Providers } from "@/store/provider"; | ||
import { Suspense } from "react"; | ||
|
||
interface Props { | ||
children: React.ReactNode; | ||
} | ||
|
||
const AuthLayout = async ({ children }: Props) => { | ||
return ( | ||
<div className="flex-auto flex h-[92vh] "> | ||
<Providers> | ||
<div className="flex-auto flex h-[92vh] "> | ||
{/* sidebar and main content share this space */} | ||
<Suspense fallback={<>Loading...</>}></Suspense> | ||
<Providers> | ||
<div className="w-screen min-h-screen h-max bg-[url(/images/iiti_bg.JPG)] bg-cover bg-fixed bg-center bg-no-repeat absolute"> | ||
<div className="w-full min-h-full h-max bg-gradient-to-b from-black/40 to-black/90 bg-opacity-50 absolute"> | ||
{children} | ||
</div> | ||
</div> | ||
</Providers> | ||
</div> | ||
</Providers> | ||
</div> | ||
); | ||
}; | ||
|
||
export default AuthLayout; |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import RecruiterSignup from "@/components/loginForms/recruiterSignup"; | ||
import React from "react"; | ||
|
||
const Signup = () => { | ||
return <RecruiterSignup />; | ||
}; | ||
|
||
export default Signup; |
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
import "../globals.css"; | ||
import Sidebar from "@/components/Sidebar"; | ||
import MainContent from "@/components/MainContent"; | ||
import { Providers } from "@/store/provider"; | ||
import { Suspense } from "react"; | ||
|
||
interface Props { | ||
children: React.ReactNode; | ||
} | ||
|
||
const RouteLayout = async ({ children }: Props) => { | ||
return ( | ||
<div className="flex-auto flex h-[92vh] "> | ||
{/* sidebar and main content share this space */} | ||
<Suspense fallback={<>Loading...</>}> | ||
<Sidebar /> | ||
</Suspense> | ||
<MainContent> | ||
<Providers>{children}</Providers> | ||
</MainContent> | ||
</div> | ||
); | ||
}; | ||
|
||
export default RouteLayout; |
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
Oops, something went wrong.