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
2 changes: 1 addition & 1 deletion Frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"devDependencies": {
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.2",
Expand Down
25 changes: 25 additions & 0 deletions Frontend/public/Homepage_Title.svg
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/homeBg.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 3 additions & 1 deletion Frontend/src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,13 @@ import ChangePass from "./components/ChangePass";
import UsernameRecover from "./components/UsernameRecover";
import UsernameSent from "./components/UsernameSent";
import DashBoard from "./components/DashBoard";
import Homepage from "./components/Homepage";
const App = () => {
return (
<>
{/* <Body/> */}
<DashBoard/>
{/* <DashBoard/> */}
<Homepage/>
</>
);
};
Expand Down
20 changes: 20 additions & 0 deletions Frontend/src/components/Homepage.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import React from "react";

const Homepage = () => {
return (
<>
<div className="home-body">
<div className="navbar-home absolute top-0 left-0 p-4 w-full h-10">
<div className="">
<div className="assemble text-white">ASSEMBLE</div>
<div className="GUI text-white">GAMEZONE UNITED INDIA</div>
</div>
<div className="home-title"></div>
<div className="home-icons"></div>
</div>
</div>
</>
);
};

export default Homepage;
23 changes: 22 additions & 1 deletion Frontend/src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -362,4 +362,25 @@
width:4%;
background-image: url("../public/leftsidebar.png");
background-size: 100% 100%;
}
}

/* HOMEPAGE */
.home-body{
height: 100vh;
width: 100vw;
background-image: url("../public/homeBG.png");
background-color: black ;
background-size: cover;
font-family: "Agencyfb";
font-size: 90%;
}
.navbar-home{
display : flex;
justify-content: space-between;
}
.home-title{
height : 100px;
width : 400px;
background-image: url("../public/Homepage_Title.svg");
background-size:100% 100%;
}