diff options
Diffstat (limited to 'src/components/footer/Footer.tsx')
| -rw-r--r-- | src/components/footer/Footer.tsx | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/components/footer/Footer.tsx b/src/components/footer/Footer.tsx new file mode 100644 index 0000000..9b2a3f2 --- /dev/null +++ b/src/components/footer/Footer.tsx @@ -0,0 +1,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> + ); +} |
