Skip to content

Commit

Permalink
labels - address column - figma design implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
manishiwa committed Jul 31, 2024
1 parent 1af651e commit 6561380
Show file tree
Hide file tree
Showing 3 changed files with 239 additions and 222 deletions.
10 changes: 8 additions & 2 deletions app/(labels)/labels/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Providers } from "../../providers";
import CookieConsent from "@/components/layout/CookieConsent";
import { Raleway, Inter, Roboto_Mono } from "next/font/google";
import { Raleway, Inter, Roboto_Mono, Source_Code_Pro } from "next/font/google";
import { Metadata } from "next";
import { Graph } from "schema-dts";
import Head from "../../(layout)/head";
Expand Down Expand Up @@ -77,6 +77,12 @@ const robotoMono = Roboto_Mono({
display: "swap",
});

const sourceCodePro = Source_Code_Pro({
subsets: ["latin"],
variable: "--font-source-code-pro",
display: "swap",
});

export default function RootLayout({
children,
}: {
Expand All @@ -85,7 +91,7 @@ export default function RootLayout({
return (
<html
lang="en"
className={`${raleway.variable} ${inter.variable} ${robotoMono.variable} scroll-smooth`}
className={`${raleway.variable} ${inter.variable} ${robotoMono.variable} ${sourceCodePro.variable} scroll-smooth`}
suppressHydrationWarning
style={{
fontFeatureSettings: "'pnum' on, 'lnum' on",
Expand Down
Loading

0 comments on commit 6561380

Please sign in to comment.