Footer Component

This commit is contained in:
Adwit Mukherji
2024-10-25 15:29:05 +01:00
parent 54f806e06b
commit 2788783857
2 changed files with 14 additions and 5 deletions

View File

@@ -1,4 +1,5 @@
import Header from '../components/custom/header';
import Footer from '../components/custom/footer';
export default function Home() {
return (
@@ -20,12 +21,8 @@ export default function Home() {
<li>Event 3 - Date</li>
</ul>
</section>
<Footer />
</main>
<footer className="text-center mt-8">
<p className="text-gray-500">
&copy; 2024 Ticket Chain. All rights reserved.
</p>
</footer>
</div>
);
}

View File

@@ -0,0 +1,12 @@
import React from 'react';
const Footer = () => {
return (
<footer className="text-center mt-8">
<p className="text-gray-500">
&copy; 2024 Ticket Chain. All rights reserved.
</p>
</footer>
);
};
export default Footer;