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