From 93a6cf952d61621335d58be63e5b4342a58c2237 Mon Sep 17 00:00:00 2001 From: Hikari Date: Tue, 3 Mar 2026 18:16:40 -0800 Subject: [PATCH] fix: move link tags into head and add stylesheet precedence Resolves hydration error from link elements as direct children of html, and adds precedence="default" to the highlight.js stylesheet link. --- src/app/layout.tsx | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9eea457..80f6848 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -36,6 +36,14 @@ const RootLayout = ({ }>): JSX.Element => { return ( + + + + - - {children} );