Preparation for proper release

This commit is contained in:
2023-08-05 18:49:04 +01:00
parent 25cda7ef65
commit 25b1250df7
20 changed files with 366 additions and 508 deletions

View File

@@ -1,12 +1,6 @@
//import "./globals.css";
import { Inter } from "next/font/google";
import { Work_Sans } from "next/font/google";
const inter = Inter({ subsets: ["latin"] });
export const metadata = {
title: "Create Next App",
description: "Generated by create next app",
};
const workSans = Work_Sans({ subsets: ["latin"] });
export default function RootLayout({
children,
@@ -15,7 +9,7 @@ export default function RootLayout({
}) {
return (
<html lang="en">
<body className={inter.className}>{children}</body>
<body className={workSans.className}>{children}</body>
</html>
);
}