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