diff --git a/src/app/_components/RoomList.tsx b/src/app/_components/RoomList.tsx index 5763669..22e20ff 100644 --- a/src/app/_components/RoomList.tsx +++ b/src/app/_components/RoomList.tsx @@ -98,7 +98,6 @@ const RoomList = () => { {roomsFromDb && roomsFromDb.length > 0 && (
Room Name | diff --git a/src/app/dashboard/page.tsx b/src/app/dashboard/page.tsx index 1fa99c0..8f1dfaa 100644 --- a/src/app/dashboard/page.tsx +++ b/src/app/dashboard/page.tsx @@ -1,8 +1,5 @@ "use client"; -import type { NextPage } from "next"; -import Head from "next/head"; - import RoomList from "~/app/_components/RoomList"; import Link from "next/link"; diff --git a/src/app/page.tsx b/src/app/page.tsx index 2c1bd8c..6cd5d88 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,19 +1,10 @@ -import { type NextPage } from "next"; -import Head from "next/head"; - export const dynamic = "force-static"; -const Home: NextPage = () => { +const Home = () => { return ( - <> - -
---|