tenext redesign

This commit is contained in:
2026-08-03 14:42:01 +05:30
parent 1e3f225bed
commit 6625bb9018
78 changed files with 2798 additions and 859 deletions

27
app/privacy/page.tsx Normal file
View 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>
</>
);
}