Files
eve-pi/src/app/layout.tsx
2023-10-02 13:34:28 +03:00

26 lines
495 B
TypeScript

import "./globals.css";
import { Analytics } from "@vercel/analytics/react";
import { Inter } from "next/font/google";
import React from 'react'
const inter = Inter({ subsets: ["latin"] });
export const metadata = {
title: "EVE PI",
description: "Lets PI!",
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en">
<body className={inter.className}>
{children} <Analytics />
</body>
</html>
);
}