mirror of
https://github.com/FranP-code/spooky-spotify-showcase.git
synced 2025-10-13 00:02:36 +00:00
25 lines
604 B
TypeScript
25 lines
604 B
TypeScript
import "@/styles/globals.css";
|
|
|
|
import { GeistSans } from "geist/font/sans";
|
|
import { type Metadata } from "next";
|
|
|
|
import { TRPCReactProvider } from "@/trpc/react";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Spooky Spotify Showcase",
|
|
description: "Generated by create-t3-app",
|
|
icons: [{ rel: "icon", url: "/favicon.ico" }],
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{ children: React.ReactNode }>) {
|
|
return (
|
|
<html lang="en" className={`${GeistSans.variable}`}>
|
|
<body>
|
|
<TRPCReactProvider>{children}</TRPCReactProvider>
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|