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