This commit is contained in:
2025-10-16 10:45:58 +02:00
commit d3b4bb0c3a
33 changed files with 1954 additions and 0 deletions

12
src/components/Footer.tsx Normal file
View File

@@ -0,0 +1,12 @@
function Footer() {
return (
<footer className="border-t border-slate-800 bg-slate-900 py-12">
<div className="container mx-auto px-6 text-center text-slate-400">
<p>&copy; 2025 Budapest Bisztró. Minden jog fenntartva.</p>
<p className="mt-2">123 Budapest utca, Budapest, Magyarország | info@budapestbisztro.hu</p>
</div>
</footer>
);
}
export default Footer;