move sssg to it's own repo at https://git.sad.ovh/sophie/sssg
All checks were successful
/ test (push) Successful in 14s

This commit is contained in:
Soph :3 2024-08-02 04:27:06 +03:00
parent 031625f918
commit d0084e9f44
Signed by: sophie
GPG key ID: EDA5D222A0C270F2
11 changed files with 47 additions and 458 deletions

View file

@ -2,9 +2,8 @@ import { useEffect, useState } from "preact/hooks";
import type { Metadata } from "./blog";
import { Giscus } from "./giscus";
export function BlogPost({ pageOpen }: { pageOpen: [Metadata | undefined, (z: Metadata | undefined) => void] }) {
if(!pageOpen[0]) return <h1>How did you get to here..?</h1>;
if (!pageOpen[0]) return <h1>How did you get to here..?</h1>;
const blogPost = useState<string | undefined>();