Files
eveship.fit/app/layout.tsx
Patric Stout 4f8f709253 chore: change font from Noto Serif to Noto Sans (#93)
This much better matches the look&feel of ingame, style-wise.
2024-09-18 12:21:14 +00:00

28 lines
620 B
TypeScript

import React from "react";
import type { Metadata } from "next";
import "./globals.css";
import { Noto_Sans } from "next/font/google";
import { Layout } from "@/components/Layout";
const font = Noto_Sans({
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "EVEShip.fit",
description: "View, Create, and Share your EVE Online ship fits online",
referrer: "origin",
};
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="en">
<body className={font.className}>
<Layout>{children}</Layout>
</body>
</html>
);
}