Skip to content

Commit

Permalink
Merge pull request #14 from OpenVoiceOS/footer_fix
Browse files Browse the repository at this point in the history
add footer items
  • Loading branch information
suvanbanerjee authored Sep 18, 2024
2 parents 64c2b7f + e66e496 commit ead53cf
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 0 deletions.
3 changes: 3 additions & 0 deletions components/ui/footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ export default function Footer() {
<li><Link href="/team" className="mr-4 hover:underline md:mr-6">Teams</Link></li>
<li><Link href="#" className="mr-4 hover:underline md:mr-6">Blog</Link></li>
<li><Link href="/translation" className="mr-4 hover:underline md:mr-6">Translation</Link></li>
<li><Link href="/translation" className="mr-4 hover:underline md:mr-6">Friends</Link></li>
<li><Link href="/translation" className="mr-4 hover:underline md:mr-6">Donate</Link></li>
<li><Link href="/translation" className="mr-4 hover:underline md:mr-6">Contribute</Link></li>
</ul>
<span className="text-sm text-gray-500 sm:text-center dark:text-gray-400">© 2024 <Link href="/" className="hover:underline">Open Voice OS</Link>. All Rights Reserved.</span>
</div>
Expand Down
5 changes: 5 additions & 0 deletions components/ui/header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,11 @@ export default function Header() {
<p className={`font-medium ${pathname === '/blogs' ? 'font-extrabold text-black dark:text-white' : 'text-gray-600'} hover:text-gray-900 dark:hover:text-white px-5 py-3 flex items-center transition duration-150 ease-in-out`}>Blogs</p>
</Link>
</li>
<li>
<Link href="/contribute">
<p className={`font-medium ${pathname === '/blogs' ? 'font-extrabold text-black dark:text-white' : 'text-gray-600'} hover:text-gray-900 dark:hover:text-white px-5 py-3 flex items-center transition duration-150 ease-in-out`}>Contribution</p>
</Link>
</li>
<li>
<Link href="/">
<p className={`btn-sm bg-black text-white dark:text-black dark:bg-white mx-3 rounded-xl`}>
Expand Down
3 changes: 3 additions & 0 deletions components/ui/mobile-menu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,9 @@ export default function MobileMenu() {
<li>
<Link href="/team" className="flex font-medium w-full text-gray-600 dark:text-gray-300 hover:text-gray-900 dark:hover:text-white py-2 justify-center" onClick={() => setMobileNavOpen(false)}>Team</Link>
</li>
<li>
<Link href="/contribution" className="flex font-medium w-full text-gray-600 dark:text-gray-300 hover:text-gray-900 dark:hover:text-white py-2 justify-center" onClick={() => setMobileNavOpen(false)}>Contribution</Link>
</li>
<li>
<Link href="/blog" className="flex font-medium w-full text-gray-600 dark:text-gray-300 hover:text-gray-900 dark:hover:text-white py-2 justify-center" onClick={() => setMobileNavOpen(false)}>Blogs</Link>
</li>
Expand Down

0 comments on commit ead53cf

Please sign in to comment.