/* eslint-disable @typescript-eslint/no-explicit-any */ import { LoginFormAction } from "@/actions/auth/AuthActions"; import { getRooms } from "@/actions/room/RoomActions"; import RoomCard from "@/components/RoomCard"; import { Handshake } from "lucide-react"; import { cookies } from "next/headers"; import Image from "next/image"; import Link from "next/link"; import { ViewTransition } from "react"; export default async function Home() { const cj = await cookies() const session = cj.get(`ccsession`) const rooms = await getRooms() return (