Initial commit

This commit is contained in:
2026-03-27 19:35:14 +01:00
commit 38581b88a4
68 changed files with 12137 additions and 0 deletions

27
app/layout.tsx Normal file
View 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>
);
}