initial commit

This commit is contained in:
Mobin 2025-03-10 00:35:31 +03:30
parent bfe7515aa6
commit 5d603dce90
17 changed files with 977 additions and 64 deletions

View file

@ -0,0 +1,61 @@
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>
);
}