chore: update dependencies and fix blog styling #24

Merged
naomi merged 8 commits from feat/style into main 2026-03-03 19:38:00 -08:00
Showing only changes of commit 93a6cf952d - Show all commits
+8 -5
View File
@@ -36,6 +36,14 @@ const RootLayout = ({
}>): JSX.Element => { }>): JSX.Element => {
return ( return (
<html lang="en"> <html lang="en">
<head>
<link href="https://cdn.nhcarrigan.com/logo.png" rel="icon" sizes="any" />
<link
href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.11.1/styles/default.min.css"
precedence="default"
rel="stylesheet"
></link>
</head>
<Script <Script
async={true} async={true}
defer={true} defer={true}
@@ -43,11 +51,6 @@ const RootLayout = ({
strategy={"afterInteractive"} strategy={"afterInteractive"}
type="text/javascript" type="text/javascript"
></Script> ></Script>
<link href="https://cdn.nhcarrigan.com/logo.png" rel="icon" sizes="any" />
<link
href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.11.1/styles/default.min.css"
rel="stylesheet"
></link>
<body>{children}</body> <body>{children}</body>
</html> </html>
); );