tenext redesign
This commit is contained in:
27
app/privacy/page.tsx
Normal file
27
app/privacy/page.tsx
Normal file
@@ -0,0 +1,27 @@
|
||||
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>
|
||||
</>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user