import "@/styles/globals.css"; import { Toaster } from "@/components/ui/sonner"; import { api } from "@/utils/api"; import type { NextPage } from "next"; import { ThemeProvider } from "next-themes"; import type { AppProps } from "next/app"; import { Inter } from "next/font/google"; import Head from "next/head"; import type { ReactElement, ReactNode } from "react"; const inter = Inter({ subsets: ["latin"] }); export type NextPageWithLayout

= NextPage & { getLayout?: (page: ReactElement) => ReactNode; // session: Session | null; theme?: string; }; type AppPropsWithLayout = AppProps & { Component: NextPageWithLayout; }; const MyApp = ({ Component, pageProps: { ...pageProps }, }: AppPropsWithLayout) => { const getLayout = Component.getLayout ?? ((page) => page); return ( <> Dokploy {getLayout()} ); }; export default api.withTRPC(MyApp);