Update
This commit is contained in:
29
resources/js/pages/FrontPages/DmcaCopyright.tsx
Normal file
29
resources/js/pages/FrontPages/DmcaCopyright.tsx
Normal file
@@ -0,0 +1,29 @@
|
||||
import Footer from '@/pages/home/partials/Footer.jsx';
|
||||
import { Head } from '@inertiajs/react';
|
||||
import React from 'react';
|
||||
|
||||
interface DmcaCopyrightProps {
|
||||
content: string;
|
||||
title: string;
|
||||
}
|
||||
|
||||
const DmcaCopyright: React.FC<DmcaCopyrightProps> = ({ 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="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 DmcaCopyright;
|
||||
Reference in New Issue
Block a user