EverydayTech Platform - Developer Reference
Complete Source Code Documentation - All Applications
Loading...
Searching...
No Matches
page.tsx
Go to the documentation of this file.
1"use client";
2
3import { Icon } from '@/contexts/IconContext';
4
5export default function GDPRPage() {
6 return (
7 <div className="min-h-screen bg-bg p-6">
8 <div className="max-w-7xl mx-auto">
9 <div className="mb-8">
10 <h1 className="text-3xl font-bold text-text mb-2 flex items-center gap-3">
11 <Icon name="policy" size={32} />
12 GDPR Compliance
13 </h1>
14 <p className="text-muted">Data protection and privacy settings</p>
15 </div>
16
17 <div className="bg-surface rounded-lg shadow-sm border border-border p-6 mb-6">
18 <h2 className="text-xl font-semibold text-text mb-4">Data Protection & Privacy</h2>
19 <p className="text-muted">GDPR compliance features coming soon...</p>
20 </div>
21 </div>
22 </div>
23 );
24}