feat: fix warning in react doctor

This commit is contained in:
Jet Pham 2026-02-18 19:17:40 -08:00
parent ed3f252ea7
commit a8212f744a
No known key found for this signature in database
3 changed files with 13 additions and 3 deletions

View file

@ -49,5 +49,10 @@
"ct3aMetadata": { "ct3aMetadata": {
"initVersion": "7.40.0" "initVersion": "7.40.0"
}, },
"overrides": {} "overrides": {},
"knip": {
"ignore": [
"cgol/pkg/**"
]
}
} }

View file

@ -20,8 +20,8 @@ export function FrostedBox({
className="pointer-events-none absolute inset-0 h-[200%]" className="pointer-events-none absolute inset-0 h-[200%]"
style={{ style={{
backgroundColor: "rgba(0, 0, 0, 0.75)", backgroundColor: "rgba(0, 0, 0, 0.75)",
backdropFilter: "blur(16px)", backdropFilter: "blur(10px)",
WebkitBackdropFilter: "blur(16px)", WebkitBackdropFilter: "blur(10px)",
maskImage: maskImage:
"linear-gradient(to bottom, black 0% 50%, transparent 50% 100%)", "linear-gradient(to bottom, black 0% 50%, transparent 50% 100%)",
WebkitMaskImage: WebkitMaskImage:

View file

@ -6,6 +6,11 @@ import Header from "./_components/header";
import { CgolCanvas } from "./_components/cgol-canvas"; import { CgolCanvas } from "./_components/cgol-canvas";
import FirstName from "~/assets/Jet.txt"; import FirstName from "~/assets/Jet.txt";
export const metadata = {
title: "Jet Pham - Software Extremist",
description: "Personal website of Jet Pham, a software extremist.",
};
export default async function Home() { export default async function Home() {
return ( return (
<> <>