diff --git a/app/layout.tsx b/app/layout.tsx
index 0a4c55c..b92cb9e 100644
--- a/app/layout.tsx
+++ b/app/layout.tsx
@@ -1,38 +1,38 @@
import Image from "next/image";
import Link from "next/link";
import "../global.css";
-import { Inter } from "@next/font/google";
-import font from "@next/font/local";
-const pangea = font({
- src: [
- {
- path: "../public/fonts/PangeaAfrikanTrial-Light.woff2",
- weight: "100",
- style: "normal",
- },
- {
- path: "../public/fonts/PangeaAfrikanTrial-Regular.woff2",
- weight: "300",
- style: "normal",
- },
- {
- path: "../public/fonts/PangeaAfrikanTrial-Medium.woff2",
- weight: "500",
- style: "normal",
- },
- {
- path: "../public/fonts/PangeaAfrikanTrial-SemiBold.woff2",
- weight: "700",
- style: "normal",
- },
- {
- path: "../public/fonts/PangeaAfrikanTrial-Bold.woff2",
- weight: "900",
- style: "normal",
- },
- ],
- variable: "--font-pangea",
-});
+import { Inter, Hanken_Grotesk } from "@next/font/google";
+// import font from "@next/font/local";
+// const pangea = font({
+// src: [
+// {
+// path: "../public/fonts/PangeaAfrikanTrial-Light.woff2",
+// weight: "100",
+// style: "normal",
+// },
+// {
+// path: "../public/fonts/PangeaAfrikanTrial-Regular.woff2",
+// weight: "300",
+// style: "normal",
+// },
+// {
+// path: "../public/fonts/PangeaAfrikanTrial-Medium.woff2",
+// weight: "500",
+// style: "normal",
+// },
+// {
+// path: "../public/fonts/PangeaAfrikanTrial-SemiBold.woff2",
+// weight: "700",
+// style: "normal",
+// },
+// {
+// path: "../public/fonts/PangeaAfrikanTrial-Bold.woff2",
+// weight: "900",
+// style: "normal",
+// },
+// ],
+// variable: "--font-pangea",
+// });
export const metadata = {
title: "chronark.com",
@@ -44,13 +44,18 @@ const inter = Inter({
variable: "--font-inter",
});
+const grotesk = Hanken_Grotesk({
+ subsets: ["latin"],
+ variable: "--font-grotesk",
+});
+
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
-
+
-
-
- CHRONARK
-
-
-
-