this repo has no description www.baileykane.co/
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Create empty blog post page content?

BK610 b49cd84a 74c071f1

+20
+20
components/pageContent/blog/BlogPostPage.tsx
··· 1 + import BaseLayout from "@/components/BaseLayout"; 2 + // import BlogPostContent from "@/components/BlogPostContent"; 3 + import type BlogPostType from "@/types/BlogPost"; 4 + 5 + interface BlogPostProps { 6 + blogPost: BlogPostType; 7 + } 8 + 9 + export default function BlogPost({ 10 + blogPost, 11 + }: BlogPostProps): React.ReactElement { 12 + return ( 13 + <BaseLayout titleText={`Blog | ${blogPost.title}`}> 14 + <div className="max-w-3xl mx-auto"> 15 + {/* <BlogPostContent blogPost={blogPost} /> */} 16 + {blogPost.title} 17 + </div> 18 + </BaseLayout> 19 + ); 20 + }