From 0550aeaf7da90d75db290868aaa4e9aec8e6417b Mon Sep 17 00:00:00 2001 From: codetorso Date: Fri, 19 Jul 2024 07:20:34 +0530 Subject: inter font --- apps/web/app/(dash)/home/heading.tsx | 7 +++++-- apps/web/app/(dash)/menu.tsx | 9 ++++++--- 2 files changed, 11 insertions(+), 5 deletions(-) (limited to 'apps/web') 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) => ( -
+
{icon}
-- cgit v1.2.3