···11export interface BlogPost {
22 datePosted: string;
33 title: string;
44+ author: string;
55+ summary: string;
46 content: string;
57}
68···810 {
911 datePosted: "2025-11-15",
1012 title: "My First Blog Post",
1313+ author: "Samuel Shuert",
1414+ summary: "First blog post",
1115 content:
1216 "This is my first blog post. I am excited to share my thoughts with the world! lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.",
1317 },
1418 {
1519 datePosted: "2025-11-17",
1620 title: "My Second Blog Post",
2121+ author: "Samuel Shuert",
2222+ summary: "Another post",
1723 content:
1824 "This is my second blog post. I am excited to share my thoughts with the world!",
1925 },
2026 {
2127 datePosted: "2025-11-18",
2228 title: "My Third Blog Post",
2929+ author: "Samuel Shuert",
3030+ summary:
3131+ "The third blog post lorem ipsum dolor sit amet consectetur adipiscing elit The third blog post lorem ipsum dolor sit amet consectetur adipiscing elit",
2332 content:
2433 "This is my third blog post. I am excited to share my thoughts with the world!",
2534 },