footer and first desktop version completed

This commit is contained in:
hamid zarghami
2026-07-19 16:09:33 +03:30
parent 2c9b43c84a
commit 2adaac8ec4
12 changed files with 275 additions and 7 deletions
@@ -0,0 +1,25 @@
import { type FC } from "react";
type Props = {
title: string;
links: string[];
};
const FooterLinkColumn: FC<Props> = ({ title, links }) => {
return (
<div className="flex flex-col gap-3">
<h3 className="text-sm font-bold text-[#0A1B2C]">{title}</h3>
<ul className="flex flex-col gap-2.5">
{links.map((link) => (
<li key={link}>
<a href="#" className="text-sm text-[#3A4147] transition-colors hover:text-primary">
{link}
</a>
</li>
))}
</ul>
</div>
);
};
export default FooterLinkColumn;