Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Us-sync committed Jan 23, 2024
1 parent 331467c commit c907200
Show file tree
Hide file tree
Showing 4 changed files with 90 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .firebase/hosting.ZGlzdA.cache
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ khubaib.jpeg,1702830442543,6301c37f37c3606ff1a30ee1648572b9e6c08502d0fe8033127fa
logo.svg,1702805755363,106fd0e0e25e62773089d32eafec6046eb8f0d1a196e632a72cdfd2280812357
signin.svg,1686127288433,f60118db2a3203e28dc8285cf5d2dafbc799618ee6b2a4d0d3a63f36ba584c8e
vite.svg,1680593882164,59ec4b6085a0cb1bf712a5e48dd5f35b08e34830d49c2026c18241be04e05d5a
index.html,1705755592829,6e90a65c4849799f671d084a469e299d5b6d659eb3c0ccffd07ac4efaadf3bec
assets/ajax-loader-e7b44c86.gif,1705755592829,e9699a225e244ba8bb48532313e5c56a76fe08358c6dd684fb3234f2f63e7961
assets/slick-12459f22.svg,1705755592829,d00477d40ed40fa1dd3bdee27d9286804121b15fea83bae7d5415d902b055de0
assets/index-ae82b04f.css,1705755592829,958a54b651f036e2901d6ac38b6fdee4185a2d517566df6e5a957ee22cad3121
assets/index-523fd03e.js,1705755592829,f5b840b3d50d964bb221c29ecdf94eaa61e39cdc6f8e9fbe6fd06c2e2ad4de13
index.html,1705762733311,3aa103aefd15437ca4771771a622c548a571122cd62c6a099ae3ccb300de06f5
assets/ajax-loader-e7b44c86.gif,1705762733311,e9699a225e244ba8bb48532313e5c56a76fe08358c6dd684fb3234f2f63e7961
assets/slick-12459f22.svg,1705762733311,d00477d40ed40fa1dd3bdee27d9286804121b15fea83bae7d5415d902b055de0
assets/index-ae82b04f.css,1705762733311,958a54b651f036e2901d6ac38b6fdee4185a2d517566df6e5a957ee22cad3121
assets/index-6e3f1d56.js,1705762733311,3ebbb72682b4f5fa4c675f52b78922336f1b56b5fd77e244568df580b338bc68
4 changes: 3 additions & 1 deletion src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ import AdminDashboard from "./pages/AdminDashboard";
import UnauthorizedError from "./pages/UnauthorizedError";
import Error from "./pages/Error"; // Import the Error component
import Team from "./pages/Team";
import Test from "./pages/Test";

function App() {
return (
Expand All @@ -46,7 +47,7 @@ function App() {
path="/On_boarding_form"
element={<Protected Component={OnBoardingForm} />}
/>
<Route path="/homebanner" element={<OnBoardingForm />} />

<Route path="/profilelist" element={<ProfileList />} />
<Route
path="/profile"
Expand All @@ -56,6 +57,7 @@ function App() {
<Route path="/admin" element={<AdminDashboard />} />
<Route path="/error" element={<UnauthorizedError />} />
<Route path="/team" element={<Team />} />
<Route path="/test" element={<Test />} />

{/* Add other routes for your pages */}

Expand Down
11 changes: 11 additions & 0 deletions src/components/Navbar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,17 @@ export const Navbar = () => {
</Link>
)}
</li>
<li className="nav-item">
{isSignedIn ? (
<Link
to="/on_boarding_form"
className="nav-link bg-primary rounded text-white px-3 py-2 mx-2 button-animated"
onClick={() => closeNavbar()}
>
onboarding form
</Link>
) : null}
</li>
</ul>
</div>
</div>
Expand Down
71 changes: 71 additions & 0 deletions src/pages/Test.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
import React from "react";

const Test = () => {
return (
<div className="mt-5 p-5 ">
<div class="col-md-6 m-5">
<div
class="card testimonial-card shadow-sm"
style={{ maxWidth: "22rem" }}
>
<div class="card-up indigo lighten-1"></div>

<div class="avatar mx-auto my-2 white">
<img
src="https://mdbootstrap.com/img/Photos/Avatars/img%20%2810%29.webp"
class="rounded-circle"
alt="woman avatar"
/>
</div>

<div class="card-body">
<div className="d-flex">
<h3 class="card-title me-5">Anna Doe</h3>

<span
className="badge badge bg-primary m-1 text-light"
style={{
fontSize: "0.8rem",
padding: "1.8%",
height: "fit-content",
}}
>
2024
</span>
<span
className="badge badge bg-primary m-1 text-light"
style={{
fontSize: "0.8rem",
padding: "1.8%",
height: "fit-content",
}}
>
CSE
</span>
</div>

<h6 className="my-0">[jobrole]</h6>
<span className="text-muted">[company name]</span>

<hr />

<p>
<i class="fa fa-quote-left"></i> [bio]
</p>
<div className="d-flex mx-auto p-2 text-xl">
<a type="button" class="btn-floating btn-small btn-fb me-2">
<i class="fa fa-linkedin"></i>
</a>

<a type="button" class="btn-floating btn-small">
<i class="fa fa-envelope"></i>
</a>
</div>
</div>
</div>
</div>
</div>
);
};

export default Test;

0 comments on commit c907200

Please sign in to comment.