|
1 | 1 | import type { Metadata, Viewport } from "next"; |
2 | | -import { Inter_Tight, JetBrains_Mono } from "next/font/google"; |
| 2 | +import { JetBrains_Mono, Source_Serif_4 } from "next/font/google"; |
3 | 3 | import "./globals.css"; |
| 4 | +import "./research.css"; |
4 | 5 |
|
5 | 6 | const SITE_URL = "https://torchgeo.org"; |
6 | 7 | const SITE_TITLE = "TorchGeo · Geospatial deep learning for PyTorch"; |
7 | 8 | const SITE_DESCRIPTION = |
8 | 9 | "TorchGeo is a PyTorch domain library for satellite and aerial imagery — datasets, samplers, transforms, and pretrained models for geospatial machine learning."; |
9 | 10 |
|
10 | | -const interTight = Inter_Tight({ |
| 11 | +const sourceSerif = Source_Serif_4({ |
11 | 12 | subsets: ["latin"], |
12 | 13 | variable: "--font-body", |
13 | 14 | weight: ["400", "500", "600", "700"], |
@@ -38,7 +39,9 @@ export const metadata: Metadata = { |
38 | 39 | "Sentinel-2", |
39 | 40 | "multispectral", |
40 | 41 | ], |
41 | | - authors: [{ name: "The TorchGeo Authors", url: "https://github.com/torchgeo" }], |
| 42 | + authors: [ |
| 43 | + { name: "The TorchGeo Authors", url: "https://github.com/torchgeo" }, |
| 44 | + ], |
42 | 45 | creator: "The TorchGeo Authors", |
43 | 46 | publisher: "The TorchGeo Organization", |
44 | 47 | alternates: { |
@@ -138,7 +141,7 @@ export default function RootLayout({ |
138 | 141 | }>) { |
139 | 142 | return ( |
140 | 143 | <html lang="en"> |
141 | | - <body className={`${interTight.variable} ${jetbrainsMono.variable}`}> |
| 144 | + <body className={`${sourceSerif.variable} ${jetbrainsMono.variable}`}> |
142 | 145 | {children} |
143 | 146 | <script |
144 | 147 | type="application/ld+json" |
|
0 commit comments