+
-
iNZight Analytics Brand
+ iNZight Analytics Brand
-
Colours
-
-
-
-
+
+
+
+
Typography
+
+
+
Heading level 1
+
Heading level 2
+
Heading level 3
+
Heading level 4
+
+
Normal paragraph text.
+
diff --git a/src/app/(website)/globals.css b/src/app/(website)/globals.css
index f1d8c73..b456bec 100644
--- a/src/app/(website)/globals.css
+++ b/src/app/(website)/globals.css
@@ -1 +1,9 @@
+@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
+
@import "tailwindcss";
+
+@theme {
+ /* FONT FAMILIES */
+ --font-sans: Inter, sans;
+ --font-display: var(--font-sans);
+}
diff --git a/src/app/(website)/layout.tsx b/src/app/(website)/layout.tsx
index 42fc323..fe9f311 100644
--- a/src/app/(website)/layout.tsx
+++ b/src/app/(website)/layout.tsx
@@ -1,17 +1,7 @@
import type { Metadata } from "next";
-import { Geist, Geist_Mono } from "next/font/google";
+
import "./globals.css";
-const geistSans = Geist({
- variable: "--font-geist-sans",
- subsets: ["latin"],
-});
-
-const geistMono = Geist_Mono({
- variable: "--font-geist-mono",
- subsets: ["latin"],
-});
-
export const metadata: Metadata = {
title: "Create Next App",
description: "Generated by create next app",
@@ -24,9 +14,7 @@ export default function RootLayout({
}>) {
return (
-
- {children}
-
+ {children}
);
}