might work, basic writing page with linking. no saving.

This commit is contained in:
2026-06-28 10:43:47 -05:00
parent 914c9fbac8
commit c04738f9c4
12 changed files with 745 additions and 3 deletions
+6 -2
View File
@@ -1,3 +1,7 @@
export default function WritePage() {
return <h1>Write Page</h1>;
export default function ViewBlogPage() {
return (
<div className="flex flex-col p-2">
<h1>You can view blogs here...</h1>
</div>
);
}