-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
061af4b
commit 5fc2f34
Showing
2 changed files
with
8 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
export const Footer = () => { | ||
return ( | ||
<footer class="fixed bottom-0 left-0 z-20 w-full p-4 border-t border-gray-200 shadow md:p-6 dark:bg-gray-800 dark:border-gray-600 md:flex md:items-center md:justify-around"> | ||
<span class="text-sm text-gray-500 sm:text-center dark:text-gray-400">© 2024 <a href="#" class="hover:underline">Staff Directory</a>. All Rights Reserved. | ||
<footer className="fixed bottom-0 left-0 z-20 w-full p-4 border-t border-gray-200 shadow md:p-6 dark:bg-gray-800 dark:border-gray-600 md:flex md:items-center md:justify-around"> | ||
<span className="text-sm text-gray-500 sm:text-center dark:text-gray-400">© 2024 <a href="#" className="hover:underline">Staff Directory</a>. All Rights Reserved. | ||
</span> | ||
<ul class="flex flex-wrap items-center mt-3 text-sm font-medium text-gray-500 dark:text-gray-400 sm:mt-0"> | ||
<ul className="flex flex-wrap items-center mt-3 text-sm font-medium text-gray-500 dark:text-gray-400 sm:mt-0"> | ||
<li> | ||
<p class="me-4 md:me-6">Made with HonoX + Cloudflare Pages + D1 + ❤️</p> | ||
<p className="me-4 md:me-6">Made with HonoX + Cloudflare Pages + D1 + ❤️</p> | ||
</li> | ||
<li> | ||
<a href="https://github.com/lauragift21/staff-hub" class="hover:underline me-4 md:me-6">GitHub</a> | ||
<a href="https://github.com/lauragift21/staff-hub" className="hover:underline me-4 md:me-6">GitHub</a> | ||
</li> | ||
</ul> | ||
</footer> | ||
) | ||
} | ||
); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters