61 lines
2.3 KiB
TypeScript
61 lines
2.3 KiB
TypeScript
import Image from "next/image";
|
||
import { Footer, FooterBottom, FooterColumn, FooterContent } from "./ui/footer";
|
||
|
||
export default function FooterSection() {
|
||
return (
|
||
<footer className="w-full bg-background px-4">
|
||
<div className="mx-auto max-w-container">
|
||
<Footer>
|
||
<FooterContent>
|
||
<FooterColumn className="col-span-2 sm:col-span-3 md:col-span-1">
|
||
<div className="flex items-center">
|
||
<Image src={"/logo.png"} width={30} height={30} alt="logo" />
|
||
<h3 className="text-xl font-bold">پارچ کست</h3>
|
||
</div>
|
||
</FooterColumn>
|
||
<FooterColumn>
|
||
<h3 className="text-md pt-1 font-semibold">Product</h3>
|
||
<a href="/" className="text-sm text-muted-foreground">
|
||
Changelog
|
||
</a>
|
||
<a href="/" className="text-sm text-muted-foreground">
|
||
Documentation
|
||
</a>
|
||
</FooterColumn>
|
||
<FooterColumn>
|
||
<h3 className="text-md pt-1 font-semibold">Company</h3>
|
||
<a href="/" className="text-sm text-muted-foreground">
|
||
About
|
||
</a>
|
||
<a href="/" className="text-sm text-muted-foreground">
|
||
Careers
|
||
</a>
|
||
<a href="/" className="text-sm text-muted-foreground">
|
||
Blog
|
||
</a>
|
||
</FooterColumn>
|
||
<FooterColumn>
|
||
<h3 className="text-md pt-1 font-semibold">شبکه های اجتماعی</h3>
|
||
<a href="/" className="text-sm text-muted-foreground">
|
||
Discord
|
||
</a>
|
||
<a href="/" className="text-sm text-muted-foreground">
|
||
Twitter
|
||
</a>
|
||
<a href="/" className="text-sm text-muted-foreground">
|
||
Github
|
||
</a>
|
||
</FooterColumn>
|
||
</FooterContent>
|
||
<FooterBottom>
|
||
<div>© 2025 پارچ کست. تمامی حقوق محفوظ است</div>
|
||
<div className="flex items-center gap-4">
|
||
<a href="/">سیاست حفظ حریم خصوصی</a>
|
||
<a href="/">شرایط خدمات</a>
|
||
</div>
|
||
</FooterBottom>
|
||
</Footer>
|
||
</div>
|
||
</footer>
|
||
);
|
||
}
|