feature/completed navbar/header functionality

This commit is contained in:
Joaquin committed 2025-05-05 16:24:25 -07:00
1 parent 02a8374a58
commit 7fa75457c9
10 files changed
+158 -127

No files matched your search

+11 -4
View File
@@ -1,6 +1,5 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
@@ -9,10 +8,18 @@
</head>
<body>
<header>
<%- include("./partials/header") %>
<main>
The More Page
</main>
<footer>
<div class="fixed bottom-0 left-0 z-50 sm:hidden lg:block w-full h-16 bg-gray-100 dark:bg-gray-800 border-t border-gray-200 dark:border-gray-700 p-6 text-center text-gray-500 dark:text-gray-400 text-sm">
<div class="container mx-auto">
<p>&copy; 2025 RCalculator. All rights reserved.</p>
</div>
</div>
<%- include("./partials/navBar") %>
</header>
The More Page
</footer>
</body>
</html>