17 lines
622 B
Plaintext
17 lines
622 B
Plaintext
<footer class="bg-gray-800 text-white p-4 mt-8">
|
|
<div class="container mx-auto text-center">
|
|
<div class="flex justify-center gap-8 items-center mb-4">
|
|
<p>© <%= new Date().getFullYear() %> <%= title %>. All rights reserved.</p>
|
|
<p>Powered by <a href="https://example.com" class="text-bodylinks">Your Company</a></p>
|
|
</div>
|
|
|
|
<p>
|
|
<a href="/privacy" class="text-blue-400">Privacy Policy</a> |
|
|
<a href="/terms" class="text-blue-400">Terms of Service</a>
|
|
</p>
|
|
</div>
|
|
</footer>
|
|
</main>
|
|
</body>
|
|
</html>
|