mirror of
https://github.com/logos-messaging/logos-messaging-frontend.git
synced 2026-01-22 07:33:05 +00:00
27 lines
593 B
TypeScript
27 lines
593 B
TypeScript
import type { Metadata } from "next";
|
|
import { Inter } from "next/font/google";
|
|
import "./globals.css";
|
|
import { Menu } from "@/app/components/Menu";
|
|
|
|
const inter = Inter({ subsets: ["latin"] });
|
|
|
|
export const metadata: Metadata = {
|
|
title: "nwaku front-end",
|
|
description: "Send messages through you local node, register to RLN, read and export Keystore",
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<html lang="en">
|
|
<body className={inter.className}>
|
|
<Menu />
|
|
{children}
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|