parch-cast/components/footer-section.tsx
2025-03-10 00:35:31 +03:30

61 lines
2.3 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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>
);
}