footer is kinda gay

This commit is contained in:
Proxyy587 2024-06-16 19:43:40 +05:30
parent 11c4f1c967
commit 8d0a16249c

View file

@ -6,8 +6,10 @@ import { FOOTERLINKS } from "@/constants";
const Footer = () => {
return (
<footer className="flex flex-col px-6 md:px-16 lg:px-32 py-10 w-full bg-zinc-100 text-black dark:bg-[#0308033b] dark:text-white border-t transition-all">
<div className="flex flex-col lg:flex-row justify-between md:items-start items-center mb-14">
<>
<hr />
<footer className="flex flex-col px-6 md:px-16 lg:px-32 py-10 w-full max-w-screen-2xl mx-auto bg-zinc-100 text-black dark:bg-[#0308033b] dark:text-white transition-all">
<div className="flex flex-col lg:flex-row justify-between max-lg:items-start max-md:items-center items-center mb-14 ">
<div className="flex items-center mb-6 lg:mb-0">
<Image
src="/logo.svg"
@ -24,7 +26,7 @@ const Footer = () => {
className="dark:hidden block"
/>
</div>
<div className="flex flex-col items-center md:items-start md:flex-row justify-between w-full lg:w-auto gap-8 lg:space-y-0 lg:space-x-12">
<div className="flex flex-col items-center md:items-start md:flex-row justify-between w-full lg:w-auto lg:space-y-0 space-x-8 xl:space-x-16">
<div className="flex flex-col items-center md:items-start">
<h1 className="text-2xl font-light text-primary">Other Pages</h1>
{FOOTERLINKS.otherPages.map((link) => (
@ -84,6 +86,7 @@ const Footer = () => {
</h4>
</div>
</footer>
</>
);
};