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

@@ -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;