File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed
frontend/packages/components/src/mdx Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -180,6 +180,7 @@ export const code = ({
180180 }
181181 return (
182182 < code
183+ className = "whitespace-pre-wrap break-all"
183184 // biome-ignore lint/security/noDangerouslySetInnerHtml: it's generated from markdown
184185 dangerouslySetInnerHTML = { { __html : escapeHTML ( children as string ) } }
185186 />
Original file line number Diff line number Diff line change 11import { Button } from "@/components/Button" ;
22import { Footer } from "@/components/Footer" ;
3- import { Header } from "@/components/Header" ;
43import { Icon , faBlockQuestion } from "@rivet-gg/icons" ;
54import "@/styles/tailwind.css" ;
65import "@/styles/fonts.css" ;
6+ import { FancyHeader } from "@/components/v2/FancyHeader" ;
77
88function PageNotFound ( ) {
99 return (
10- < div >
11- < Header />
10+ < >
11+ < FancyHeader />
1212 < div className = "relative pt-14" >
1313 < div className = "relative flex min-h-[80vh] w-full items-center justify-center text-center" >
1414 < div className = "transition-opacity" >
@@ -26,7 +26,7 @@ function PageNotFound() {
2626 </ div >
2727 </ div >
2828 < Footer />
29- </ div >
29+ </ >
3030 ) ;
3131}
3232
You can’t perform that action at this time.
0 commit comments