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 content for blog page. Actual blogPosts content TBD

BK610 e9b396bb a81cc11b

+26
+26
components/pageContent/BlogPage.tsx
··· 1 + import { Key } from "react"; 2 + import BaseLayout from "@/components/BaseLayout"; 3 + 4 + interface BlogProps { 5 + blogPosts: Array<Object>; 6 + } 7 + 8 + export default function Blog({ blogPosts }: BlogProps): React.ReactElement { 9 + return ( 10 + <BaseLayout titleText="Blog"> 11 + <div className="max-w-2xl mx-auto"> 12 + <div> 13 + <h1>Blog</h1> 14 + <p className="pt-2"> 15 + Collected thoughts, very much a work in progress. 16 + </p> 17 + </div> 18 + <div> 19 + {blogPosts.map((blogPost, k: Key) => ( 20 + <div key={k}>{blogPost.name}</div> 21 + ))} 22 + </div> 23 + </div> 24 + </BaseLayout> 25 + ); 26 + }