This commit is contained in:
2025-10-07 13:30:38 +08:00
parent a59c881c98
commit 67ab729d15
2 changed files with 1 additions and 8 deletions

View File

@@ -22,7 +22,7 @@
body {
background: var(--background);
color: var(--foreground);
font-family: "Source Han Sans SC VF", var(--font-geist-sans), Arial, Helvetica, sans-serif;
font-family: var(--font-geist-sans), Arial, Helvetica, sans-serif;
}
.code-block {

View File

@@ -1,7 +1,6 @@
import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
import Head from "next/head";
import type { Viewport } from 'next'
import Link from "next/link";
import Image from "next/image";
@@ -61,12 +60,6 @@ export default function RootLayout({
}>) {
return (
<html lang="en">
<Head>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/cn-fontsource-source-han-sans-sc-vf@1.0.10/font.min.css"
/>
</Head>
<body
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
>