Some checks are pending
Deploy to Cloudflare Workers (OpenNext) / deploy (push) Waiting to run
Replace hero pan animations with gentle opacity breathing, add bottom-right consent modal with accept/decline, condense privacy policy with contact for full details, and ensure ticket card descriptions read green on white cards in the tickets section. Co-authored-by: Cursor <cursoragent@cursor.com>
20 lines
845 B
TypeScript
20 lines
845 B
TypeScript
export const privacyPolicy = {
|
|
title: "Privacy Policy",
|
|
updated: "May 2025",
|
|
intro:
|
|
"EDTF (presenter of GRV Summit) collects only what you submit on this site—such as name, email, and form details—to run the summit and reply to you. We do not sell your data.",
|
|
sections: [
|
|
{
|
|
heading: "How we use it",
|
|
body: "To process tickets, booth and partnership requests, pitch applications, and summit updates you opt into.",
|
|
},
|
|
{
|
|
heading: "Your choices",
|
|
body: "You can withdraw consent or ask about your data anytime. We keep records only as long as needed for summit operations or the law requires.",
|
|
},
|
|
],
|
|
moreDetails:
|
|
"For a full privacy request, data access, or deletion, contact our team—we will respond with complete information.",
|
|
contactEmail: "info@grvsummit.com",
|
|
} as const;
|