init
This commit is contained in:
commit
99ca448d0d
52 changed files with 3241 additions and 0 deletions
26
src/app/layout.tsx
Normal file
26
src/app/layout.tsx
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
import "~/styles/globals.css";
|
||||
|
||||
import { type Metadata } from "next";
|
||||
|
||||
import { TRPCReactProvider } from "~/trpc/react";
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Jet Pham",
|
||||
description: "Jet Pham's personal website",
|
||||
icons: [{ rel: "icon", url: "/favicon.ico" }],
|
||||
appleWebApp: {
|
||||
title: "Jet Pham",
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{ children: React.ReactNode }>) {
|
||||
return (
|
||||
<html lang="en">
|
||||
<body>
|
||||
<TRPCReactProvider>{children}</TRPCReactProvider>
|
||||
</body>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue