25 lines
491 B
TypeScript
25 lines
491 B
TypeScript
import type { Metadata } from "next";
|
|
import "./globals.css";
|
|
import WalletProvider from "./components/WalletProvider";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "DINO - Solana Token",
|
|
description: "DINO token on Solana blockchain",
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en">
|
|
<body>
|
|
<WalletProvider>
|
|
{children}
|
|
</WalletProvider>
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|