diff --git a/frontend/next.config.ts b/frontend/next.config.ts index e9ffa30..a5c09e5 100644 --- a/frontend/next.config.ts +++ b/frontend/next.config.ts @@ -1,7 +1,13 @@ import type { NextConfig } from "next"; +import path from "path"; const nextConfig: NextConfig = { - /* config options here */ + // This repo holds two independent npm projects (contract tests at the root, + // this Next.js app in /frontend), so there are two lockfiles. Pin the + // workspace root to this directory so Turbopack stops guessing. + turbopack: { + root: path.resolve(__dirname), + }, }; export default nextConfig; diff --git a/frontend/src/app/page.tsx b/frontend/src/app/page.tsx index 4b483cf..a9c7138 100644 --- a/frontend/src/app/page.tsx +++ b/frontend/src/app/page.tsx @@ -3,6 +3,8 @@ import { Hero } from "@/components/landing/hero"; import { WhoItsFor } from "@/components/landing/who-its-for"; import { Features } from "@/components/landing/features"; +import { AssistantSection } from "@/components/landing/assistant-section"; +import { FAQ } from "@/components/landing/faq"; import { CTASection } from "@/components/landing/cta-section"; import { Footer } from "@/components/landing/footer"; import Link from "next/link"; @@ -40,6 +42,8 @@ export default function LandingPage() { + +