diff --git a/src/templates/Page.tsx b/src/templates/Page.tsx index 162d796..2ee969d 100644 --- a/src/templates/Page.tsx +++ b/src/templates/Page.tsx @@ -1,5 +1,5 @@ import { css, Style } from 'hono/css'; -import { SiteMeta } from '@blog/model/SiteMeta'; +import { SiteMeta } from '@blog/models/SiteMeta'; import { MetaTags } from '@blog/templates/components/MetaTags'; const logoClass = css` diff --git a/src/templates/Pages/FourOhFour.tsx b/src/templates/Pages/FourOhFour.tsx index b4f2027..3d33eb7 100644 --- a/src/templates/Pages/FourOhFour.tsx +++ b/src/templates/Pages/FourOhFour.tsx @@ -1,5 +1,3 @@ -import { Page } from '@blog/templates/Page'; - export function FourOhFour() { return ( <> diff --git a/src/templates/Pages/PostPage.tsx b/src/templates/Pages/PostPage.tsx index 929170f..6b611de 100644 --- a/src/templates/Pages/PostPage.tsx +++ b/src/templates/Pages/PostPage.tsx @@ -5,7 +5,7 @@ export function PostPage({ post }: { post: Post }) { return ( <>