Skip to content

Commit

Permalink
Merge pull request #104 from SpaceyaTech/remove-pages-wip-build
Browse files Browse the repository at this point in the history
Remove Unused routes from the router
  • Loading branch information
JimmyTron authored Jan 10, 2024
2 parents 226ca0a + 4fc2626 commit 6bff912
Show file tree
Hide file tree
Showing 2 changed files with 191 additions and 188 deletions.
120 changes: 66 additions & 54 deletions src/APP/components/Footer2.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,63 +81,75 @@ function Footer2() {
</ul>
</div>

{/* <div className="flex flex-col gap-8">
<h2 className="text-[#00FFC3] font-bold sm:text-xl text-lg leading-9">
Resources
</h2>
<ul className="flex flex-col gap-5 list-none text-sm font-light">
//To be restored once the jobs section is implemented
//<li>Jobs</li>
<li><Link to="/allevents">Events</Link></li>
<li>Mentorship</li>
</ul>
</div> */}

{/* <div className="flex flex-col gap-8">
<h2 className="text-[#00FFC3] font-bold sm:text-xl text-lg leading-9">
Quick Links
</h2>
<ul className="flex flex-col gap-5 list-none text-sm font-light">
<li>Contact Us</li>
<li>Donate</li>
<li>Privacy Policy</li>
<li>Terms of Use</li>
</ul>
</div> */}
<div className="flex flex-col gap-8">
<h2 className="text-[#00FFC3] font-bold sm:text-xl text-lg leading-9">
Resources
</h2>

<ul className="flex flex-col gap-5 list-none text-sm font-light">
{/* To be restored once the jobs section is implemented */}
<li>Jobs</li>
<li>
{/* <Link to="/allevents"> */}
Events
{/* </Link> */}
</li>
<li>
<a
href="http://mentorlst.com"
target="_blank"
rel="noopener noreferrer"
>
Mentorship
</a>
</li>
</ul>
</div>

<div className="flex flex-col gap-8">
<h2 className="text-[#00FFC3] font-bold sm:text-xl text-lg leading-9">
Quick Links
</h2>

<ul className="flex flex-col gap-5 list-none text-sm font-light">
<li>Contact Us</li>
<li>Donate</li>
<li>Privacy Policy</li>
<li>Terms of Use</li>
</ul>
</div>
</div>
{/* <div className="flex-2">
<div className="flex flex-col gap-8">
<h2 className="text-[#00FFC3] font-bold sm:text-xl text-lg leading-9">
Subscribe to our Newsletter
</h2>
<div className="flex flex-col gap-5 text-sm font-light">
<p className="text-sm left-6">
Subscribe to our newsletter to get your
<br />
weekly dose of news, updates, tips and even
<br />
special offers
</p>
<form className="flex pr-4">
<input
type="text"
placeholder="Enter email address"
className="px-4 py-3 rounded-lg rounded-r-none flex-3"
/>
<button
type="submit"
className="rounded-r-lg px-4 py-3 flex-auto font-semibold text-white transition-all duration-200 bg-primary border border-transparent hover:bg-gray-700 focus:ring-2 focus:ring-offset-2 focus:ring-gray-900"
>
Subscribe
</button>
</form>
<div className="flex-2">
<div className="flex flex-col gap-8">
<h2 className="text-[#00FFC3] font-bold sm:text-xl text-lg leading-9">
Subscribe to our Newsletter
</h2>

<div className="flex flex-col gap-5 text-sm font-light">
<p className="text-sm left-6">
Subscribe to our newsletter to get your
<br />
weekly dose of news, updates, tips and even
<br />
special offers
</p>

<form className="flex pr-4">
<input
type="text"
placeholder="Enter email address"
className="px-4 py-3 rounded-lg rounded-r-none flex-3"
/>
<button
type="submit"
className="rounded-r-lg px-4 py-3 flex-auto font-semibold text-white transition-all duration-200 bg-primary border border-transparent hover:bg-gray-700 focus:ring-2 focus:ring-offset-2 focus:ring-gray-900"
>
Subscribe
</button>
</form>
</div>
</div>
</div>
</div> */}
</div>

<div className="sm:mt-14 mt-10">
Expand Down
Loading

0 comments on commit 6bff912

Please sign in to comment.