blob: 9b2a3f2bc6d10425f8831eba827b5f430fbe12e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
import Logo from '@icons/logo.svg';
import ArtberryIcon from '@icons/artberry.svg';
export function Footer() {
return (
<footer className="flex w-full justify-between py-[50px]">
<div className="flex flex-col justify-between w-[259px] h-[192px]">
<div className="text-right">
<div className="flex items-center gap-2.5 w-full">
<Logo />
<ArtberryIcon />
</div>
<span className="font-medium">Лучшее — здесь.</span>
</div>
<div className="flex flex-col gap-1.25">
<span className="underline text-sm">
Terms and Conditions · Privacy Policy
</span>
<span className="text-xs">© 2025 artberry.xyz</span>
</div>
</div>
</footer>
);
}
|