Update
This commit is contained in:
25
resources/js/pages/home/home.tsx
Normal file
25
resources/js/pages/home/home.tsx
Normal file
@@ -0,0 +1,25 @@
|
||||
import AuthUser from '@/modules/auth/auth-user';
|
||||
import Editor from '@/modules/editor/editor.jsx';
|
||||
import FAQDiscord from './partials/FAQDiscord.jsx';
|
||||
import Features from './partials/Features.jsx';
|
||||
import Footer from './partials/Footer.jsx';
|
||||
import Hero from './partials/Hero.jsx';
|
||||
|
||||
const Home = () => {
|
||||
return (
|
||||
<div className="min-h-[100vh] bg-neutral-50 pb-10 dark:bg-black">
|
||||
<div className="to-muted/10 w-full bg-gradient-to-b from-transparent dark:from-transparent dark:to-neutral-900">
|
||||
<Editor />
|
||||
</div>
|
||||
<div className="space-y-16">
|
||||
<Hero />
|
||||
<Features />
|
||||
<FAQDiscord />
|
||||
</div>
|
||||
<Footer />
|
||||
<AuthUser />
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default Home;
|
||||
Reference in New Issue
Block a user