added axios client

This commit is contained in:
Milo Schwartz 2024-10-06 12:39:05 -04:00
parent 3c69acaab7
commit 29777da430
No known key found for this signature in database
7 changed files with 81 additions and 41 deletions

View file

@ -1,13 +1,13 @@
import type { Metadata } from "next";
import "./globals.css";
import { Noto_Sans } from "next/font/google";
import { Roboto } from "next/font/google";
export const metadata: Metadata = {
title: "Pangolin",
description: "",
};
const inter = Noto_Sans({ subsets: ["latin"] });
const font = Roboto({ subsets: ["latin"], style: "normal", weight: "400" });
export default function RootLayout({
children,
@ -16,7 +16,7 @@ export default function RootLayout({
}>) {
return (
<html>
<body className={`${inter.className}`}>
<body className={`${font.className}`}>
<main>{children}</main>
</body>
</html>