28 lines
1.3 KiB
TypeScript
Raw Normal View History

2025-01-09 00:40:28 +03:00
import React from 'react';
import Image from "next/image";
import SocialItem from "@/components/social-item";
import Link from 'next/link';
const Footer: React.FC = () => {
return (
2025-01-27 22:42:23 +03:00
<footer className="flex flex-col items-center gap-[10px] mt-[20px] md:flex-row md:mt-[80px] md:gap-0 max-w-[1083px] px-[25px] justify-between pb-8 m-auto">
2025-01-09 00:40:28 +03:00
<a href="/public">
<Image width={150} height={48} src="/logo.svg" alt="logo"/>
</a>
2025-01-27 22:42:23 +03:00
<div className="max-w-[500px] w-full justify-between md:w-fit gap-[25px] lg:gap-[96px] flex text-[15px] text-dark items-center font-[350]">
2025-01-09 00:40:28 +03:00
<Link href="/events">События</Link>
<Link href="/participants">Участники</Link>
</div>
2025-01-27 22:42:23 +03:00
<div className="max-w-[500px] w-full justify-between md:w-fit flex gap-[25px]">
2025-01-09 00:40:28 +03:00
<Image width={83} height={21} src="/images/oppgp.svg" alt="oop"/>
<Image width={96} height={27} src="/images/pmg.svg" alt="pmg"/>
</div>
2025-01-27 22:42:23 +03:00
<div className="max-w-[500px] w-full justify-center md:w-fit flex gap-[29px]">
2025-01-09 00:40:28 +03:00
<SocialItem icon="logo_tg" link=""/>
<SocialItem icon="logo_vk" link=""/>
</div>
</footer>
);
}
export default Footer;