Update
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
import React from 'react';
|
||||
import { Head } from '@inertiajs/react';
|
||||
import AuthUser from '@/modules/auth/auth-user';
|
||||
import Footer from '@/pages/home/partials/Footer.jsx';
|
||||
import Footer from '@/pages/front/partials/Footer.jsx';
|
||||
import { Head } from '@inertiajs/react';
|
||||
import React from 'react';
|
||||
|
||||
interface PrivacyProps {
|
||||
content: string;
|
||||
@@ -12,22 +12,19 @@ const Privacy: React.FC<PrivacyProps> = ({ content, title }) => {
|
||||
return (
|
||||
<div className="min-h-[100vh] bg-neutral-50 dark:bg-black">
|
||||
<Head title={title} />
|
||||
|
||||
|
||||
<div className="container mx-auto px-4 py-8">
|
||||
<div className="max-w-4xl mx-auto">
|
||||
<div className="bg-white dark:bg-neutral-900 rounded-lg shadow-lg p-8">
|
||||
<div
|
||||
className="max-w-none"
|
||||
dangerouslySetInnerHTML={{ __html: content }}
|
||||
/>
|
||||
<div className="mx-auto max-w-4xl">
|
||||
<div className="rounded-lg bg-white p-8 shadow-lg dark:bg-neutral-900">
|
||||
<div className="max-w-none" dangerouslySetInnerHTML={{ __html: content }} />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<Footer />
|
||||
<AuthUser />
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default Privacy;
|
||||
export default Privacy;
|
||||
|
||||
Reference in New Issue
Block a user