import Link from "next/link"; import { getServerSession } from "next-auth"; import { authOptions } from "@/lib/auth"; import { BenefitsSection } from "@/components/BenefitsSection"; import { DownloadSection } from "@/components/DownloadSection"; import { LandingNavbar } from "@/components/LandingNavbar"; import { SignInButton } from "@/components/SignInButton"; import { PricingSection } from "@/components/PricingSection"; import { StepsSection } from "@/components/StepsSection"; import { Footer } from "@/components/Footer"; import { SupportSection } from "@/components/SupportSection"; export default async function HomePage() { const session = await getServerSession(authOptions); return (
); }