Repo path
website/site/app/privacy/page.tsx
The current public privacy page is intentionally lightweight and explicitly signals what legal and data-controller information is still missing.
Repo path
website/site/app/privacy/page.tsx
Notes
No additional notes recorded.
Mapped workstreams
Mapped appendices
Raw source preview
Raw, unprocessed file text shown below.
import type { Metadata } from "next";
import InfoPageTemplate from "@/components/pages/InfoPageTemplate";
export const metadata: Metadata = {
title: "Privacy | <un>peel",
description: "Pilot-site privacy information for <un>peel.",
};
export default function PrivacyPage() {
return (
<InfoPageTemplate
label="Privacy"
title="Privacy information for the pilot site."
intro="This page covers how demo inquiries and site contact details are handled during the pilot phase. A fuller privacy policy will be published before general availability."
sections={[
{
title: "What we collect",
body: [
"If you submit the contact form, we may collect the information you provide directly, such as your name, work email, company, and message.",
"We only receive information that you choose to send through the site.",
],
},
{
title: "How it is used",
body: [
"Pilot-site contact details are used to respond to demo requests, manage pilot conversations, and continue relevant commercial discussions.",
"This information is not collected for public marketing display and is not part of the public site experience.",
],
},
{
title: "Pilot-stage note",
body: [
"This is a pilot-stage notice rather than the final production privacy policy. The final version will include full company details, data-controller information, and any additional operational terms required for launch.",
"If analytics or non-essential cookies are added later, this page and any related consent mechanism will be updated accordingly.",
],
},
{
title: "How to raise a privacy question",
body: [
"If you have an immediate privacy or data-handling question during the pilot phase, use the site contact form and make clear that your request is privacy-related.",
"A dedicated privacy contact and fuller controller details will be added before broader launch.",
],
},
]}
/>
);
}