import React from 'react'; import { Head } from '@inertiajs/react'; import AuthUser from '@/modules/auth/auth-user'; import Footer from '@/pages/home/partials/Footer.jsx'; interface PrivacyProps { content: string; title: string; } const Privacy: React.FC = ({ content, title }) => { return (
); }; export default Privacy;