Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | 1x | 'use client';
import { Section } from '../../components/Section';
export default function TietosuojaselosteAge() {
return (
<Section variant="white" className="min-h-[50vh]">
<h1 className="text-3xl font-black mb-8">Tietosuojaseloste</h1>
<div className="prose prose-lg text-gray-600">
<p>Varjoliitokauppa kunnioittaa yksityisyyttäsi. Emme jaa tietojasi kolmansille osapuolille ilman lupaasi.</p>
<p className="mt-4">Rekisterinpitäjä: Varjoliitokauppa Oy<br/>Y-tunnus: 1234567-8</p>
</div>
</Section>
);
}
|