27 lines
1.2 KiB
TypeScript
Raw Permalink 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 Header: React.FC = () => {
return (
2025-01-27 22:42:23 +03:00
<header className="flex pt-8 px-[25px] m-auto justify-between items-center max-w-[1083px] relative">
<div className="sm:hidden max-w-[95px] w-full">
<Image width={23} height={17} className="cursor-pointer sm:hidden" src="/images/burger.svg" alt="burger" />
</div>
<div className="hidden w-full justify-between mt-[10px] gap-[19px] text-[15px] text-dark font-[350] sm:flex sm:max-w-[145px] sm:mt-0 md:gap-[96px]">
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
<Link href="/" className=" ">
2025-01-09 00:40:28 +03:00
<Image width={150} height={48} src="/logo.svg" alt="logo" />
</Link>
2025-01-27 22:42:23 +03:00
<div className="flex gap-[13px] sm:gap-[19px]">
2025-01-09 00:40:28 +03:00
<SocialItem icon="logo_tg" link=""/>
<SocialItem icon="logo_vk" link=""/>
</div>
</header>
);
};
export default Header;