28 lines
622 B
TypeScript
28 lines
622 B
TypeScript
import type { Metadata } from "next";
|
|
import type { ReactNode } from "react";
|
|
import { IBM_Plex_Mono } from "next/font/google";
|
|
import "@/app/globals.css";
|
|
|
|
const mono = IBM_Plex_Mono({
|
|
subsets: ["latin"],
|
|
variable: "--font-mono",
|
|
weight: ["400", "500", "600", "700"]
|
|
});
|
|
|
|
export const metadata: Metadata = {
|
|
title: "PayMe",
|
|
description: "Self-hosted payment profile platform"
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children
|
|
}: Readonly<{
|
|
children: ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en">
|
|
<body className={`${mono.variable} bg-bg text-text antialiased`}>{children}</body>
|
|
</html>
|
|
);
|
|
}
|