parch-cast/components/sections/footer/default.tsx
2025-03-02 00:58:28 +03:30

68 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 LaunchUI from "../../logos/launch-ui";
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 gap-2">
<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">Contact</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 Parch. All rights reserved</div>
<div className="flex items-center gap-4">
<a href="/">Privacy Policy</a>
<a href="/">Terms of Service</a>
</div>
</FooterBottom>
</Footer>
</div>
</footer>
);
}