mirror of
https://github.com/neynarxyz/create-farcaster-mini-app.git
synced 2025-12-11 11:52:35 -05:00
27 lines
509 B
TypeScript
27 lines
509 B
TypeScript
import type { Metadata } from 'next';
|
|
|
|
import '~/app/globals.css';
|
|
import { Providers } from '~/app/providers';
|
|
import { APP_NAME, APP_DESCRIPTION } from '~/lib/constants';
|
|
|
|
export const metadata: Metadata = {
|
|
title: APP_NAME,
|
|
description: APP_DESCRIPTION,
|
|
};
|
|
|
|
export default async function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en">
|
|
<body>
|
|
<Providers>
|
|
{children}
|
|
</Providers>
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|