Spaces:
Running on CPU Upgrade
Running on CPU Upgrade
Update frontend/src/pages/LegalPage.jsx
Browse files
frontend/src/pages/LegalPage.jsx
CHANGED
|
@@ -94,8 +94,7 @@ export const LEGAL_POLICIES = {
|
|
| 94 |
},
|
| 95 |
dpa: {
|
| 96 |
id: 'dpa',
|
| 97 |
-
title: 'Data Processing Agreement',
|
| 98 |
-
subtitle: '(DPA)',
|
| 99 |
effectiveDate: 'August 15, 2026',
|
| 100 |
intro: 'This DPA forms part of the Terms of Service. It outlines our responsibilities when processing Personal Data on behalf of our enterprise customers as a "Data Processor" under the GDPR and equivalent laws.',
|
| 101 |
sections: [
|
|
@@ -170,7 +169,16 @@ export const LegalPage = () => {
|
|
| 170 |
];
|
| 171 |
|
| 172 |
return (
|
| 173 |
-
<div className="max-w-6xl mx-auto w-full animate-fade-in py-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 174 |
<div className="grid grid-cols-1 lg:grid-cols-12 gap-lg items-start">
|
| 175 |
{/* Left Navigation Sidebar */}
|
| 176 |
<div className="lg:col-span-3 flex flex-col gap-md">
|
|
|
|
| 94 |
},
|
| 95 |
dpa: {
|
| 96 |
id: 'dpa',
|
| 97 |
+
title: 'Data Processing Agreement (DPA)',
|
|
|
|
| 98 |
effectiveDate: 'August 15, 2026',
|
| 99 |
intro: 'This DPA forms part of the Terms of Service. It outlines our responsibilities when processing Personal Data on behalf of our enterprise customers as a "Data Processor" under the GDPR and equivalent laws.',
|
| 100 |
sections: [
|
|
|
|
| 169 |
];
|
| 170 |
|
| 171 |
return (
|
| 172 |
+
<div className="max-w-6xl mx-auto w-full animate-fade-in py-sm">
|
| 173 |
+
{/* Back Button */}
|
| 174 |
+
<button
|
| 175 |
+
onClick={() => navigate(-1)}
|
| 176 |
+
className="inline-flex items-center gap-xs text-on-surface-variant hover:text-primary transition-colors mb-md cursor-pointer border-0 bg-transparent font-bold text-sm p-0"
|
| 177 |
+
>
|
| 178 |
+
<span className="material-symbols-outlined text-[20px]">arrow_back</span>
|
| 179 |
+
<span>Back</span>
|
| 180 |
+
</button>
|
| 181 |
+
|
| 182 |
<div className="grid grid-cols-1 lg:grid-cols-12 gap-lg items-start">
|
| 183 |
{/* Left Navigation Sidebar */}
|
| 184 |
<div className="lg:col-span-3 flex flex-col gap-md">
|