Skip to content

Commit

Permalink
Merge pull request #40 from shuvadeepmondal/shuvadeep
Browse files Browse the repository at this point in the history
Closes #39
  • Loading branch information
Puskar-Roy authored Jul 19, 2024
2 parents 8a5457a + 89d3a0d commit 40d955d
Show file tree
Hide file tree
Showing 3 changed files with 62 additions and 1 deletion.
2 changes: 2 additions & 0 deletions apps/frontend/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import Register from "./components/auth/Register";
import ForgotPassword from "./components/auth/Forgot-Password";
import OTP from "./components/auth/OTP";
import { ThemeProvider } from "./context/ThemeCOntext";
import Footer from "./components/Footer";


function App() {
Expand All @@ -28,6 +29,7 @@ function App() {

</Routes>
</ThemeProvider>
<Footer/>
</>
);
}
Expand Down
56 changes: 56 additions & 0 deletions apps/frontend/src/components/Footer.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@

import logo from "../assets/Unite__Logo.png";
import { Link } from "react-router-dom";
function Footer() {
return (
<div className="w-full bg-slate-50 dark:bg-grid-white/[0.2] bg-grid-black/[0.2] relative flex items-center justify-center pb-10">
<footer className="bg-transparent rounded-lg m-4 mx-auto w-[80%] z-10">
<div className="w-full max-w-screen-xl mx-auhref p-4 md:py-8">
<div className="sm:flex sm:items-center sm:justify-between">
<Link
to="/"
className="flex items-center mb-4 sm:mb-0 space-x-3 rtl:space-x-reverse"
>
<img src={logo} height={50} width={50} alt="logo" />
<h2 className={`text-2xl font-bold`}>
UNITE
</h2>
</Link>
<ul className="flex flex-wrap items-center mb-6 text-sm font-medium text-black sm:mb-0 ">
<li>
<Link to="/" className="hover:underline me-4 md:me-6">
Home
</Link>
</li>
<li>
<Link
to="/"
className="hover:underline me-4 md:me-6"
>
Service
</Link>
</li>
<li>
<Link
to="/"
className="hover:underline me-4 md:me-6"
>
Contact
</Link>
</li>
</ul>
</div>
<hr className="my-6 border-gray-400 sm:mx-auhref lg:my-8" />
<span className="block text-sm text-black sm:text-center ">
© Design And Devloped By{" "}
<Link to="/" className="hover:underline">
Bug_Busters™
</Link>
</span>
</div>
</footer>
</div>
);
}

export default Footer;
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@
"node": ">=18"
},
"dependencies": {
"lucide-react": "^0.408.0"
"@types/react": "^18.3.3",
"lucide-react": "^0.408.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}

0 comments on commit 40d955d

Please sign in to comment.