mirror of
https://github.com/calli-eve/eve-pi.git
synced 2026-02-14 03:38:49 +01:00
26 lines
495 B
TypeScript
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>
|
|
);
|
|
}
|