feat: add cta to landing page

This commit is contained in:
Henry
2025-02-19 21:22:42 +00:00
parent d4d3e41384
commit 169275d9ca
6 changed files with 101 additions and 6 deletions

View File

@@ -8,6 +8,7 @@ import PatternedBackground from "~/components/PatternedBackground";
import { env } from "~/env";
import { useTheme } from "~/providers/theme";
import { api } from "~/utils/api";
import Cta from "./components/Cta";
import FAQs from "./components/Faqs";
import Features from "./components/Features";
import Footer from "./components/Footer";
@@ -109,6 +110,9 @@ export default function HomeView() {
<div id="faq" className="absolute -top-20" />
<FAQs />
</div>
<div className="relative">
<Cta theme={theme.activeTheme} />
</div>
</div>
</div>
<Footer />