Added tickets and timetable pages

This commit is contained in:
2025-04-29 11:49:15 +03:00
parent 9399dc332e
commit ed248a88e5
5 changed files with 104 additions and 28 deletions

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

@@ -0,0 +1,21 @@
import { SiDiscord, SiInstagram, SiFacebook } from "react-icons/si";
const Footer = () => (
<div className="flex items-center justify-between h-60 px-12">
<img src="/tipilan-white.svg" alt="TipiLAN Logo" className="h-16"/>
{/* Social media */}
<div className="flex flex-row">
<a href="#" target="_blank" rel="noopener noreferrer">
<SiDiscord title="Discord" size={'2em'} className="mx-4 text-[#2A2C3F]"/>
</a>
<a href="#" target="_blank" rel="noopener noreferrer">
<SiInstagram title="Instagram" size={'2em'} className="mx-4 text-[#2A2C3F]"/>
</a>
<a href="#" target="_blank" rel="noopener noreferrer">
<SiFacebook title="Facebook" size={'2em'} className="mx-4 text-[#2A2C3F]"/>
</a>
</div>
</div>
);
export default Footer;