feat: fix spacing and comment out trpc

This commit is contained in:
Jet Pham 2025-11-25 14:49:23 -08:00
parent 2010438475
commit 234e637b20
No known key found for this signature in database
8 changed files with 225 additions and 122 deletions

View file

@ -1,8 +1,8 @@
import "~/styles/globals.css";
import { type Metadata } from "next";
import { type Metadata, type Viewport } from "next";
import { TRPCReactProvider } from "~/trpc/react";
// import { TRPCReactProvider } from "~/trpc/react";
export const metadata: Metadata = {
title: "Jet Pham",
@ -13,13 +13,21 @@ export const metadata: Metadata = {
},
};
export const viewport: Viewport = {
width: "device-width",
initialScale: 1,
themeColor: "#000000",
};
export default function RootLayout({
children,
}: Readonly<{ children: React.ReactNode }>) {
return (
<html lang="en">
<body>
<TRPCReactProvider>{children}</TRPCReactProvider>
{/* <TRPCReactProvider> */}
{children}
{/* </TRPCReactProvider> */}
</body>
</html>
);