Lint
This commit is contained in:
parent
2b66acb2a4
commit
dd1d66bf49
4 changed files with 4 additions and 19 deletions
|
@ -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>
|
||||
|
|
|
@ -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";
|
||||
|
|
|
@ -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>
|
||||
</>
|
||||
<div className="flex flex-col text-center items-center justify-center px-4 py-16 gap-4">
|
||||
<HomePageBody />
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
|
|
|
@ -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";
|
||||
|
|
Loading…
Add table
Reference in a new issue