Mostly Front End & UI fixes

This commit is contained in:
gib
2024-07-20 09:12:29 -05:00
parent 8e02288d3d
commit 5f020bf542
12 changed files with 176 additions and 151 deletions
+2 -2
View File
@@ -1,7 +1,7 @@
import { auth } from "~/auth";
import No_Session from "~/components/auth/No_Session";
import TT_Header from "~/components/ui/TT_Header";
import Techs_Table from "~/components/ui/Techs_Table";
import Techs from "~/components/ui/Techs";
export default async function HomePage() {
const session = await auth();
@@ -12,7 +12,7 @@ export default async function HomePage() {
<main className="min-h-screen bg-gradient-to-b
from-[#111111] to-[#111325]">
<TT_Header />
<Techs_Table />
<Techs />
</main>
);
}