mirror of
https://github.com/Lapikud/tipilan.git
synced 2026-03-23 13:24:21 +00:00
Added tickets and timetable pages
This commit is contained in:
21
src/components/Footer.tsx
Normal file
21
src/components/Footer.tsx
Normal 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;
|
||||
Reference in New Issue
Block a user