From 68fafca58b08c1a15b957aca9c46eebb81c9d3b9 Mon Sep 17 00:00:00 2001 From: Jake Howell Date: Wed, 29 Oct 2025 02:08:45 +0000 Subject: [PATCH] fix: convert emotion `css={{}}` to tailwind `class` --- site/src/pages/404Page/404Page.tsx | 25 +++++-------------------- 1 file changed, 5 insertions(+), 20 deletions(-) diff --git a/site/src/pages/404Page/404Page.tsx b/site/src/pages/404Page/404Page.tsx index b3be31f270118..a04b1d95a5670 100644 --- a/site/src/pages/404Page/404Page.tsx +++ b/site/src/pages/404Page/404Page.tsx @@ -2,26 +2,11 @@ import type { FC } from "react"; const NotFoundPage: FC = () => { return ( -
-
({ - margin: 8, - padding: 8, - borderRight: theme.palette.divider, - })} - > -

404

-
-

This page could not be found.

+
+

+ 404 + This page could not be found. +

); };