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