This commit is contained in:
Atridad Lahiji 2023-08-29 18:45:27 -06:00
parent 2b66acb2a4
commit dd1d66bf49
No known key found for this signature in database
4 changed files with 4 additions and 19 deletions

View file

@ -98,7 +98,6 @@ const RoomList = () => {
{roomsFromDb && roomsFromDb.length > 0 && (
<div className="overflow-x-auto">
<table className="table text-center">
{/* head */}
<thead>
<tr className="border-white">
<th>Room Name</th>

View file

@ -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";

View file

@ -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 (
<>
<Head>
<title>Sprint Padawan</title>
<meta name="description" content="Plan. Sprint. Repeat." />
</Head>
<div className="flex flex-col text-center items-center justify-center px-4 py-16 gap-4">
<HomePageBody />
</div>
</>
);
};

View file

@ -1,7 +1,5 @@
"use client";
import { type NextPage } from "next";
import Head from "next/head";
import Image from "next/image";
import { useEffect, useState } from "react";
import { EventTypes } from "~/utils/types";