`xlog-post-tag-${tag}`),
+ // page && `xlog-post-id-${page.characterId}-${page.noteId}`,
+ // page?.metadata?.content?.tags?.map((tag) => `xlog-post-tag-${tag}`),
)}
>
{children}
diff --git a/src/app/site/[site]/not-found.tsx b/src/app/site/[site]/not-found.tsx
new file mode 100644
index 00000000..cc29b9d5
--- /dev/null
+++ b/src/app/site/[site]/not-found.tsx
@@ -0,0 +1,27 @@
+import { SitePage } from "~/components/site/SitePage"
+import { SITE_URL } from "~/lib/env"
+import { useTranslation } from "~/lib/i18n"
+
+export default async function NotFound() {
+ const { t } = await useTranslation("site")
+
+ return (
+
+ )
+}
diff --git a/src/components/site/PostLink.tsx b/src/components/site/PostLink.tsx
deleted file mode 100644
index 21b86760..00000000
--- a/src/components/site/PostLink.tsx
+++ /dev/null
@@ -1,22 +0,0 @@
-// import { Link } from "react-scroll"
-
-// export const PostLink: React.FC
= ({ children, ...props }) => {
-// if (props.href?.startsWith("#")) {
-// return (
-//
-// {children}
-//
-// )
-// } else {
-// return {children}
-// }
-// }
-
-export {}