small landingpage changes

This commit is contained in:
vincanger
2024-06-05 11:18:00 +02:00
parent 872139434c
commit 225851aaf0

View File

@@ -9,21 +9,14 @@ import Footer from './Footer';
export default function LandingPage() { export default function LandingPage() {
return ( return (
<div className='bg-white dark:text-white dark:bg-boxdark-2'> <div className='bg-white dark:text-white dark:bg-boxdark-2'>
{/* Header */}
<Header /> <Header />
<main className='isolate dark:bg-boxdark-2'> <main className='isolate dark:bg-boxdark-2'>
{/* Hero section */}
<Hero /> <Hero />
{/* Clients section */}
<Clients /> <Clients />
{/* Feature section */}
<Feature /> <Feature />
{/* Testimonial section */}
<Testimonial /> <Testimonial />
{/* FAQ */}
<Faq /> <Faq />
</main> </main>
{/* Footer */}
<Footer /> <Footer />
</div> </div>
); );