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 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 {
|
interface PrivacyProps {
|
||||||
content: string;
|
content: string;
|
||||||
@@ -14,12 +14,9 @@ const Privacy: React.FC<PrivacyProps> = ({ content, title }) => {
|
|||||||
<Head title={title} />
|
<Head title={title} />
|
||||||
|
|
||||||
<div className="container mx-auto px-4 py-8">
|
<div className="container mx-auto px-4 py-8">
|
||||||
<div className="max-w-4xl mx-auto">
|
<div className="mx-auto max-w-4xl">
|
||||||
<div className="bg-white dark:bg-neutral-900 rounded-lg shadow-lg p-8">
|
<div className="rounded-lg bg-white p-8 shadow-lg dark:bg-neutral-900">
|
||||||
<div
|
<div className="max-w-none" dangerouslySetInnerHTML={{ __html: content }} />
|
||||||
className="max-w-none"
|
|
||||||
dangerouslySetInnerHTML={{ __html: content }}
|
|
||||||
/>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
import React from 'react';
|
|
||||||
import { Head } from '@inertiajs/react';
|
|
||||||
import AuthUser from '@/modules/auth/auth-user';
|
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 TermsProps {
|
interface TermsProps {
|
||||||
content: string;
|
content: string;
|
||||||
@@ -14,12 +14,9 @@ const Terms: React.FC<TermsProps> = ({ content, title }) => {
|
|||||||
<Head title={title} />
|
<Head title={title} />
|
||||||
|
|
||||||
<div className="container mx-auto px-4 py-8">
|
<div className="container mx-auto px-4 py-8">
|
||||||
<div className="max-w-4xl mx-auto">
|
<div className="mx-auto max-w-4xl">
|
||||||
<div className="bg-white dark:bg-neutral-900 rounded-lg shadow-lg p-8">
|
<div className="rounded-lg bg-white p-8 shadow-lg dark:bg-neutral-900">
|
||||||
<div
|
<div className="max-w-none" dangerouslySetInnerHTML={{ __html: content }} />
|
||||||
className="max-w-none"
|
|
||||||
dangerouslySetInnerHTML={{ __html: content }}
|
|
||||||
/>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
import AuthUser from '@/modules/auth/auth-user';
|
import AuthUser from '@/modules/auth/auth-user';
|
||||||
|
import FAQDiscord from '@/pages/front/partials/FAQDiscord.jsx';
|
||||||
|
import Features from '@/pages/front/partials/Features.jsx';
|
||||||
|
import Footer from '@/pages/front/partials/Footer.jsx';
|
||||||
|
import Hero from '@/pages/front/partials/Hero.jsx';
|
||||||
import { useEffect, useState } from 'react';
|
import { useEffect, useState } from 'react';
|
||||||
import FAQDiscord from './_home/partials/FAQDiscord.jsx';
|
|
||||||
import Features from './_home/partials/Features.jsx';
|
|
||||||
import Footer from './_home/partials/Footer.jsx';
|
|
||||||
import Hero from './_home/partials/Hero.jsx';
|
|
||||||
|
|
||||||
const Home = () => {
|
const Home = () => {
|
||||||
const [isClient, setIsClient] = useState(false);
|
const [isClient, setIsClient] = useState(false);
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user