Initial commit
This commit is contained in:
27
app/layout.tsx
Normal file
27
app/layout.tsx
Normal file
@@ -0,0 +1,27 @@
|
||||
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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user