diff --git a/apps/web/app/(dash)/home/heading.tsx b/apps/web/app/(dash)/home/heading.tsx
index e50f509b..12417a83 100644
--- a/apps/web/app/(dash)/home/heading.tsx
+++ b/apps/web/app/(dash)/home/heading.tsx
@@ -1,5 +1,8 @@
import { useEffect, useState } from "react";
import { AnimatePresence, motion } from "framer-motion";
+import { Inter } from "next/font/google";
+
+const poppins = Inter({ subsets: ["latin"], weight: ["600"] });
const headings = [
"Unlock your digital brain",
@@ -21,10 +24,10 @@ export function Heading({ queryPresent }: { queryPresent: boolean }) {
{headings[showHeading]}
diff --git a/apps/web/app/(dash)/menu.tsx b/apps/web/app/(dash)/menu.tsx
index 8d8e77c1..3cb79309 100644
--- a/apps/web/app/(dash)/menu.tsx
+++ b/apps/web/app/(dash)/menu.tsx
@@ -11,7 +11,10 @@ import {
PresentationChartLineIcon,
RectangleStackIcon,
} from "@heroicons/react/24/solid";
-import DialogTriggerWrapper, { DialogDesktopTrigger, DialogMobileTrigger } from "./dialogTriggerWrapper";
+import DialogTriggerWrapper, {
+ DialogDesktopTrigger,
+ DialogMobileTrigger,
+} from "./dialogTriggerWrapper";
const menuItems = [
{
@@ -82,7 +85,7 @@ function Menu() {
Home
-
+
{menuItems.map((item) => (
-