Skip to content

Commit e92f2cb

Browse files
author
Scott Murray
committed
add stem and plantpot to blog list
1 parent 89b8d99 commit e92f2cb

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/components/BlogList.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React from "react";
22
import { useNavigate } from "react-router-dom";
33
import { useBlogPosts, usePrefetchBlogPost } from "../hooks/useBlog";
4-
import type { ModelsBlogPostMeta } from "../lib/blog-api-client/src";
4+
import PlantPot from "./PlantPot";
55

66
interface BlogListProps {
77
onPostSelect: (slug: string) => void;
@@ -175,6 +175,8 @@ const BlogList: React.FC<BlogListProps> = ({ onPostSelect }) => {
175175
</div>
176176
)}
177177
</div>
178+
<div className="stem w-1 h-4 bg-gray-600 my-2 mx-auto opacity-60"></div>
179+
<PlantPot />
178180
</div>
179181
);
180182
};

src/components/Hero.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
position: absolute;
3232
background-repeat: repeat-x;
3333
background-size: contain;
34-
width: 100vw;
34+
width: 101vw;
3535
height: 524px;
3636
transform: rotateZ(360deg); /* Browser trickery */
3737
}

0 commit comments

Comments
 (0)