diff --git a/app/components/LinkWrapper.tsx b/app/components/LinkWrapper.tsx index 226166f..1b4c917 100644 --- a/app/components/LinkWrapper.tsx +++ b/app/components/LinkWrapper.tsx @@ -1,9 +1,7 @@ export function LinkWrapper({ children }: React.PropsWithChildren) { return (
-
- {children} -
+
{children}
); } diff --git a/app/components/PostPreview.tsx b/app/components/PostPreview.tsx index ddf9735..c488f21 100644 --- a/app/components/PostPreview.tsx +++ b/app/components/PostPreview.tsx @@ -11,11 +11,11 @@ export function PostPreview({ }: SerializeFrom) { const formattedDate = useFormattedDate(published); return ( -
+
-
{title}
-
{description}
+
{title}
+
{description}
diff --git a/app/components/Title.tsx b/app/components/Title.tsx index 97c346a..5a2fb7c 100644 --- a/app/components/Title.tsx +++ b/app/components/Title.tsx @@ -1,7 +1,7 @@ export function Title({ children }: React.PropsWithChildren) { return (
-
+
{children}
diff --git a/app/routes/blog._index.tsx b/app/routes/blog._index.tsx index 6938314..45354ec 100644 --- a/app/routes/blog._index.tsx +++ b/app/routes/blog._index.tsx @@ -18,7 +18,7 @@ export default function Blog() { return ( <> Here I blog about whatever get my attention -
+
{posts.map((post) => ( ))} diff --git a/app/routes/blog.tsx b/app/routes/blog.tsx index 1ebe307..2e8f139 100644 --- a/app/routes/blog.tsx +++ b/app/routes/blog.tsx @@ -24,7 +24,7 @@ export default function BlogLayout() { const { handle } = useMatch(); return ( -
+
{handle.text} diff --git a/posts/helloworld.mdx b/posts/helloworld.mdx index 119e04f..e605379 100644 --- a/posts/helloworld.mdx +++ b/posts/helloworld.mdx @@ -2,7 +2,6 @@ title: Hello, world published: 2023-03-15 description: The hello world post -isFeatured: false --- Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. diff --git a/posts/how_this_site_is_built.mdx b/posts/how_this_site_is_built.mdx index ff91408..a4abffe 100644 --- a/posts/how_this_site_is_built.mdx +++ b/posts/how_this_site_is_built.mdx @@ -2,7 +2,6 @@ title: How this site is built published: 2024-09-29 description: A technical explanation of how this site works -isFeatured: false --- This site is built with [remix.run](https://remix.run). There is no database for the posts, instead the posts are written directly in [MDX](https://mdxjs.com/). diff --git a/posts/run_shopify_app_without_appbridge.mdx b/posts/run_shopify_app_without_appbridge.mdx index 5c3447c..df3d58f 100644 --- a/posts/run_shopify_app_without_appbridge.mdx +++ b/posts/run_shopify_app_without_appbridge.mdx @@ -2,7 +2,6 @@ title: Run Shopify App without the App Bridge published: 2024-10-07 description: Let's get rid of Shopify's app bridge. -isFeatured: false --- This post wants to explain how to run a Shopify'app outside the [cli](https://github.com/Shopify/cli) and the [app bridge](https://shopify.dev/docs/api/app-bridge). diff --git a/public/cat.jpg b/public/cat.jpg deleted file mode 100644 index 806ebfe..0000000 Binary files a/public/cat.jpg and /dev/null differ