import { getServerSession } from "next-auth/next"; import { authOptions } from "./api/auth/[...nextauth]/route"; import PreloaderAndSearch from "@/components/PreloaderAndSearch"; import Header from "@/components/Header"; import HeroSection from "@/components/HeroSection"; import CTASection from "@/components/CTASection"; import AboutSection from "@/components/AboutSection"; import CTABottom from "@/components/CTABottom"; import BlogSection from "@/components/BlogSection"; import Link from "next/link"; import CookieAlert from "@/components/CookieAlert"; export default async function HomePage() { const session = await getServerSession(authOptions); return ( <> {/* Hero Section - Client Component for animations */} {/* Blog Section - Client Component for WOW.js animations */} {/* Footer */} {/* Cookie Alert */} {/* Cookie Alert */} {/* Scroll To Top */} > ); }