From e9e22969ece41a1a07bb675a16be16bbbab67e11 Mon Sep 17 00:00:00 2001 From: yasuaki640 Date: Sun, 14 Jul 2024 00:40:01 +0900 Subject: [PATCH] Added syntax highlighting for code blocks using highlight.js library in Layout component. --- src/views/Layout.tsx | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/views/Layout.tsx b/src/views/Layout.tsx index 76e971d..169422b 100644 --- a/src/views/Layout.tsx +++ b/src/views/Layout.tsx @@ -2,6 +2,16 @@ import type { FC } from "hono/jsx"; export const Layout: FC = ({ children }) => ( + + + + + + + {children} );