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

Configure Feed

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

Minor spacing adjustments

BK610 de7c4fb4 b4cbabd6

+4 -3
+4 -3
components/pageContent/BlogPage.tsx
··· 1 1 import { Key } from "react"; 2 2 import BaseLayout from "@/components/BaseLayout"; 3 + import SectionList from "@/components/SectionList"; 3 4 import BlogPostPreview from "@/components/BlogPostPreview"; 4 5 import type BlogPost from "@/types/BlogPost"; 5 6 ··· 11 12 return ( 12 13 <BaseLayout titleText="Blog"> 13 14 <div className="max-w-2xl mx-auto"> 14 - <div> 15 + <div className="mb-6"> 15 16 <h1>Blog</h1> 16 17 <p className="pt-2"> 17 18 Collected thoughts, very much a work in progress. 18 19 </p> 19 20 </div> 20 - <div> 21 + <SectionList> 21 22 {blogPosts.map((blogPost, k: Key) => ( 22 23 <BlogPostPreview key={k} blogPost={blogPost} /> 23 24 ))} 24 - </div> 25 + </SectionList> 25 26 </div> 26 27 </BaseLayout> 27 28 );