28 lines
845 B
TypeScript
28 lines
845 B
TypeScript
import { Navbar } from "@/components/sections/Navbar";
|
|
import { PageTitleBanner } from "@/components/shared/PageTitleBanner";
|
|
import { LegalContent } from "@/components/shared/LegalContent";
|
|
import { PreFooterCTA } from "@/components/shared/PreFooterCTA";
|
|
import { privacyPolicy } from "@/data/legal";
|
|
|
|
export const metadata = {
|
|
title: "Privacy Policy",
|
|
description:
|
|
"How Tenext Technologies collects, uses, and protects information you share through this website.",
|
|
};
|
|
|
|
export default function PrivacyPage() {
|
|
return (
|
|
<>
|
|
<Navbar />
|
|
<main className="bg-white">
|
|
<PageTitleBanner
|
|
title="Privacy Policy"
|
|
breadcrumbs={[{ label: "Home", href: "/" }, { label: "Privacy Policy" }]}
|
|
/>
|
|
<LegalContent sections={privacyPolicy} />
|
|
<PreFooterCTA />
|
|
</main>
|
|
</>
|
|
);
|
|
}
|