feat: remove server and update deps to static

This commit is contained in:
Jet Pham 2026-02-18 19:08:30 -08:00
parent 92bd962b14
commit ed3f252ea7
No known key found for this signature in database
21 changed files with 362 additions and 889 deletions

View file

@ -1,6 +1,5 @@
import Link from "next/link";
import Image from "next/image";
// import { HydrateClient } from "~/trpc/server";
import { BorderedBox } from "./_components/bordered-box";
import { FrostedBox } from "./_components/frosted-box";
import Header from "./_components/header";
@ -9,7 +8,6 @@ import FirstName from "~/assets/Jet.txt";
export default async function Home() {
return (
// <HydrateClient>
<>
<CgolCanvas />
<main>
@ -74,6 +72,5 @@ export default async function Home() {
</div>
</main>
</>
// </HydrateClient>
);
}