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 && (
|
{roomsFromDb && roomsFromDb.length > 0 && (
|
||||||
<div className="overflow-x-auto">
|
<div className="overflow-x-auto">
|
||||||
<table className="table text-center">
|
<table className="table text-center">
|
||||||
{/* head */}
|
|
||||||
<thead>
|
<thead>
|
||||||
<tr className="border-white">
|
<tr className="border-white">
|
||||||
<th>Room Name</th>
|
<th>Room Name</th>
|
||||||
|
|
|
@ -1,8 +1,5 @@
|
||||||
"use client";
|
"use client";
|
||||||
|
|
||||||
import type { NextPage } from "next";
|
|
||||||
import Head from "next/head";
|
|
||||||
|
|
||||||
import RoomList from "~/app/_components/RoomList";
|
import RoomList from "~/app/_components/RoomList";
|
||||||
|
|
||||||
import Link from "next/link";
|
import Link from "next/link";
|
||||||
|
|
|
@ -1,19 +1,10 @@
|
||||||
import { type NextPage } from "next";
|
|
||||||
import Head from "next/head";
|
|
||||||
|
|
||||||
export const dynamic = "force-static";
|
export const dynamic = "force-static";
|
||||||
|
|
||||||
const Home: NextPage = () => {
|
const Home = () => {
|
||||||
return (
|
return (
|
||||||
<>
|
<div className="flex flex-col text-center items-center justify-center px-4 py-16 gap-4">
|
||||||
<Head>
|
<HomePageBody />
|
||||||
<title>Sprint Padawan</title>
|
</div>
|
||||||
<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>
|
|
||||||
</>
|
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
"use client";
|
"use client";
|
||||||
|
|
||||||
import { type NextPage } from "next";
|
|
||||||
import Head from "next/head";
|
|
||||||
import Image from "next/image";
|
import Image from "next/image";
|
||||||
import { useEffect, useState } from "react";
|
import { useEffect, useState } from "react";
|
||||||
import { EventTypes } from "~/utils/types";
|
import { EventTypes } from "~/utils/types";
|
||||||
|
|
Loading…
Add table
Reference in a new issue