feat: Introduce InstallSection component and refine existing UI for the marketing page, layout, and various components.

This commit is contained in:
2026-02-08 16:50:30 +00:00
parent 80aaf16bba
commit 4ec9355510
10 changed files with 231 additions and 56 deletions

View File

@@ -4,6 +4,7 @@ import Hero from '@/components/Hero';
import Features from '@/components/Features';
import HowItWorks from '@/components/HowItWorks';
import CallToAction from '@/components/CallToAction';
import InstallSection from '@/components/InstallSection';
import Toast from '@/components/Toast';
import { useSearchParams, useRouter } from 'next/navigation';
import { Suspense, useEffect, useState } from 'react';
@@ -29,7 +30,8 @@ function HomeContent() {
<Hero />
<Features />
<HowItWorks />
<CallToAction />
{/* <CallToAction /> */}
<InstallSection />
</main>
);
}