From 00901fdfd27778677d03cc2956732dfb0ac2d7fb Mon Sep 17 00:00:00 2001 From: waleed Date: Sat, 4 Jul 2026 18:58:55 -0700 Subject: [PATCH] fix(404): use ChipLink for return-home CTA on root not-found page Matches the emcn ChipLink pattern already used by sibling landing not-found pages instead of a hand-rolled Link with raw Tailwind classes. --- apps/sim/app/not-found.tsx | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/apps/sim/app/not-found.tsx b/apps/sim/app/not-found.tsx index 76af4c16271..82c39e62ab3 100644 --- a/apps/sim/app/not-found.tsx +++ b/apps/sim/app/not-found.tsx @@ -1,5 +1,5 @@ +import { ChipLink } from '@sim/emcn' import type { Metadata } from 'next' -import Link from 'next/link' import { LogoShell } from '@/app/(landing)/components' export const metadata: Metadata = { @@ -17,12 +17,9 @@ export default function NotFound() {

The page you're looking for doesn't exist or has been moved.

- + Return home - + )