From d2dc5ccdbfbd7984a974814a9ddf9540e3c24b06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Casal?= Date: Wed, 30 Aug 2023 15:35:44 +0100 Subject: [PATCH] removed unused component --- .../_marketing+/components/from-the-blog.tsx | 58 ------------------- 1 file changed, 58 deletions(-) delete mode 100644 app/routes/_marketing+/components/from-the-blog.tsx diff --git a/app/routes/_marketing+/components/from-the-blog.tsx b/app/routes/_marketing+/components/from-the-blog.tsx deleted file mode 100644 index 02de2ae..0000000 --- a/app/routes/_marketing+/components/from-the-blog.tsx +++ /dev/null @@ -1,58 +0,0 @@ -import { ArticlePreview } from '~/components/ArticlePreview.tsx' -import { Container } from '~/components/ui/container.tsx' -import { Text } from '~/components/ui/text.tsx' - -const posts = [ - { - id: 1, - title: 'Boost your conversion rate', - href: '#', - description: - 'Illo sint voluptas. Error voluptates culpa eligendi. Hic vel totam vitae illo. Non aliquid explicabo necessitatibus unde. Sed exercitationem placeat consectetur nulla deserunt vel. Iusto corrupti dicta.', - imageUrl: '/img/andre-at-piano.jpg', - date: 'Mar 16, 2020', - datetime: '2020-03-16', - }, - { - id: 2, - title: 'Boost your conversion rate', - href: '#', - description: - 'Illo sint voluptas. Error voluptates culpa eligendi. Hic vel totam vitae illo. Non aliquid explicabo necessitatibus unde. Sed exercitationem placeat consectetur nulla deserunt vel. Iusto corrupti dicta.', - imageUrl: '/img/andre-at-piano.jpg', - date: 'Mar 16, 2020', - datetime: '2020-03-16', - }, - { - id: 3, - title: 'Boost your conversion rate', - href: '#', - description: - 'Illo sint voluptas. Error voluptates culpa eligendi. Hic vel totam vitae illo. Non aliquid explicabo necessitatibus unde. Sed exercitationem placeat consectetur nulla deserunt vel. Iusto corrupti dicta.', - imageUrl: '/img/andre-at-piano.jpg', - date: 'Mar 16, 2020', - datetime: '2020-03-16', - }, -] - -const FromTheBlog = () => { - return ( - -
- - Blog - - - Well-thought-out solutions to common problems in modern full-stack web dev. - -
-
- {posts.map(post => ( - - ))} -
-
- ) -} - -export default FromTheBlog