Skip to content

Commit

Permalink
feat: revert back to inter
Browse files Browse the repository at this point in the history
  • Loading branch information
ephraimduncan committed Feb 21, 2024
1 parent 5e70fc7 commit 6396918
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/app/(main)/dashboard/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ import * as React from "react";
import { validateRequest } from "~/lib/auth/validate-request";
import { redirects } from "~/lib/constants";

import { Poppins } from "next/font/google";
import { Inter } from "next/font/google";

type DashboardLayoutProps = {
children: React.ReactNode;
};

const poppinsFont = Poppins({
const inter = Inter({
subsets: ["latin"],
weight: ["400", "500", "600", "700"],
});
Expand All @@ -23,7 +23,7 @@ export default async function DashboardLayout({

return (
<div
className={`container flex min-h-[calc(100vh-180px)] flex-col gap-6 px-2 pt-6 md:flex-row md:px-4 lg:gap-10 ${poppinsFont.className}`}
className={`container flex min-h-[calc(100vh-180px)] flex-col gap-6 px-2 pt-6 md:flex-row md:px-4 lg:gap-10 ${inter.className}`}
>
<main className="w-full">{children}</main>
</div>
Expand Down

0 comments on commit 6396918

Please sign in to comment.