Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added Frontend/public/GD.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Frontend/public/leftsidebar.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Frontend/public/rightsidebar.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 3 additions & 2 deletions Frontend/src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,12 @@ import IdentityVerify from "./components/IdentityVerify";
import ChangePass from "./components/ChangePass";
import UsernameRecover from "./components/UsernameRecover";
import UsernameSent from "./components/UsernameSent";

import DashBoard from "./components/DashBoard";
const App = () => {
return (
<>
<Body/>
{/* <Body/> */}
<DashBoard/>
</>
);
};
Expand Down
35 changes: 35 additions & 0 deletions Frontend/src/components/DashBoard.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
import React from 'react'

import "./GD.css"
const DashBoard = () => {
return (
<>
<div className="main relative">
{/* Navbar at the top-left corner */}
<div className="navbar absolute top-0 left-0 p-4">
<div className="assemble text-white text-2xl font-bold">ASSEMBLE</div>
<div className="GUI text-white text-lg">GAMEZONE UNITED INDIA</div>
</div>

{/* Left Sidebar */}
<div className="left-sidebar absolute top-0 left-0 h-full w-[60px] mt-20 bg-opacity-75">
{/* Content for left sidebar */}
</div>

{/* Right Sidebar */}
<div className="right-sidebar absolute top-0 right-0 h-full w-[60px] mt-20 bg-opacity-75">
{/* Content for right sidebar */}
</div>

{/* Frosted glass effect with content */}
<div className="black h-screen w-full flex justify-center items-center bg-black bg-opacity-50">
<div className="black h-[90%] w-[50%] border-slate-400 border-2 rounded-2xl bg-[#ffffff] bg-opacity-15 backdrop-blur-md">
{/* Additional content goes here */}
</div>
</div>
</div>
</>
)
}

export default DashBoard
Empty file added Frontend/src/components/GD.css
Empty file.
26 changes: 23 additions & 3 deletions Frontend/src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,10 @@
src: url("./assets/fonts/BebasNeueRegular.woff2") format("woff2");
}


*{
cursor: url("");
}

.page {
background-image: url("../public/vite.png");
background-size: 100% 100%;
Expand Down Expand Up @@ -341,5 +344,22 @@
width : full;
background-size: cover;
}


/* GAME DASHBOARD */
.main{
height: 100vh;
width: 100vw;
background-image: url("../public/GD.png");
background-size: 100% 100%;
}
.right-sidebar{
height: 80%;
width:4%;
background-image: url("../public/rightsidebar.png");
background-size: 100% 100%;
}
.left-sidebar{
height: 80%;
width:4%;
background-image: url("../public/leftsidebar.png");
background-size: 100% 100%;
}