diff --git a/pages/index.tsx b/pages/index.tsx
index e0685a353..05c683fac 100644
--- a/pages/index.tsx
+++ b/pages/index.tsx
@@ -2,10 +2,17 @@
import { Author, CardBlog, CollapseCommon, Layout, RelevantBlogPosts } from 'src/components/common';
import { HomeBanner, HomeCategories, HomeCollection, HomeCTA, HomeFeature, HomeRecipe, HomeSubscribe, HomeVideo } from 'src/components/modules/home';
import {SelectCommon} from 'src/components/common'
+import { QUERY_KEY, ROUTE } from 'src/utils/constanst.utils'
import card from "../public/assets/images/card.png"
+import image15 from '../public/assets/images/image15.png'
+import image16 from '../public/assets/images/image16.png'
+import image17 from '../public/assets/images/image17.png'
import image20 from '../public/assets/images/image20.png'
+import image21 from '../public/assets/images/image21.png'
+import image22 from '../public/assets/images/image22.png'
+import image23 from '../public/assets/images/image23.png'
import author from '../public/assets/images/author.png'
-import { FeaturedCardBlog } from 'src/components/modules/blogs';
+import { BlogsList, FeaturedCardBlog } from 'src/components/modules/blogs';
const data = {
title: "Flammekueche with green asparagus",
@@ -15,12 +22,125 @@ const data = {
date: "APRIL 30, 2021",
author: "Alessandro Del Piero"
}
+const DATA_TEST = [
+ {
+ imageSrc: image15.src,
+ title: "1",
+ description: "The DEBM diet stands for "+"Delicious Happy Fun Diet"+". This diet was popularized by Robert...",
+ link: `${ROUTE.BLOG_DETAIL}`,
+ },
+ {
+ imageSrc: image16.src,
+ title: "2",
+ description: "Aloe vera or aloe vera is a green plant, has thorns on the side of the skin with yellowish patches and...",
+ link: `${ROUTE.BLOG_DETAIL}`,
+ },
+ {
+ imageSrc: image17.src,
+ title: "3",
+ description: "Dragon fruit is a type of fruit that is a favorite for many people because of its delicious and fresh...",
+ link: `${ROUTE.BLOG_DETAIL}`,
+ },
+ {
+ imageSrc: image21.src,
+ title: "4",
+ description: "The DEBM diet stands for "+"Delicious Happy Fun Diet"+". This diet was popularized by Robert...",
+ link: `${ROUTE.BLOG_DETAIL}`,
+ },
+ {
+ imageSrc: image22.src,
+ title: "5",
+ description: "Aloe vera or aloe vera is a green plant, has thorns on the side of the skin with yellowish patches and...",
+ link: `${ROUTE.BLOG_DETAIL}`,
+ },
+ {
+ imageSrc: image23.src,
+ title: "6",
+ description: "Dragon fruit is a type of fruit that is a favorite for many people because of its delicious and fresh...",
+ link: `${ROUTE.BLOG_DETAIL}`,
+ },
+ {
+ imageSrc: image15.src,
+ title: "7",
+ description: "The DEBM diet stands for "+"Delicious Happy Fun Diet"+". This diet was popularized by Robert...",
+ link: `${ROUTE.BLOG_DETAIL}`,
+ },
+ {
+ imageSrc: image16.src,
+ title: "8",
+ description: "Aloe vera or aloe vera is a green plant, has thorns on the side of the skin with yellowish patches and...",
+ link: `${ROUTE.BLOG_DETAIL}`,
+ },
+ {
+ imageSrc: image17.src,
+ title: "9",
+ description: "Dragon fruit is a type of fruit that is a favorite for many people because of its delicious and fresh...",
+ link: `${ROUTE.BLOG_DETAIL}`,
+ },
+ {
+ imageSrc: image23.src,
+ title: "10",
+ description: "Dragon fruit is a type of fruit that is a favorite for many people because of its delicious and fresh...",
+ link: `${ROUTE.BLOG_DETAIL}`,
+ },
+ {
+ imageSrc: image21.src,
+ title: "11",
+ description: "The DEBM diet stands for "+"Delicious Happy Fun Diet"+". This diet was popularized by Robert...",
+ link: `${ROUTE.BLOG_DETAIL}`,
+ },
+ {
+ imageSrc: image22.src,
+ title: "12",
+ description: "Aloe vera or aloe vera is a green plant, has thorns on the side of the skin with yellowish patches and...",
+ link: `${ROUTE.BLOG_DETAIL}`,
+ },
+ {
+ imageSrc: image15.src,
+ title: "13",
+ description: "The DEBM diet stands for "+"Delicious Happy Fun Diet"+". This diet was popularized by Robert...",
+ link: `${ROUTE.BLOG_DETAIL}`,
+ },
+ {
+ imageSrc: image16.src,
+ title: "14",
+ description: "Aloe vera or aloe vera is a green plant, has thorns on the side of the skin with yellowish patches and...",
+ link: `${ROUTE.BLOG_DETAIL}`,
+ },
+ {
+ imageSrc: image17.src,
+ title: "15",
+ description: "Dragon fruit is a type of fruit that is a favorite for many people because of its delicious and fresh...",
+ link: `${ROUTE.BLOG_DETAIL}`,
+ },
+ {
+ imageSrc: image21.src,
+ title: "16",
+ description: "The DEBM diet stands for "+"Delicious Happy Fun Diet"+". This diet was popularized by Robert...",
+ link: `${ROUTE.BLOG_DETAIL}`,
+ },
+ {
+ imageSrc: image23.src,
+ title: "17",
+ description: "Dragon fruit is a type of fruit that is a favorite for many people because of its delicious and fresh...",
+ link: `${ROUTE.BLOG_DETAIL}`,
+ },
+ {
+ imageSrc: image22.src,
+ title: "18",
+ description: "Aloe vera or aloe vera is a green plant, has thorns on the side of the skin with yellowish patches and...",
+ link: `${ROUTE.BLOG_DETAIL}`,
+ },
+
+]
export default function Home() {
return (
<>
+
+
>
)
}
-// Home.Layout = Layout
+Home.Layout = Layout
diff --git a/public/assets/images/image21.png b/public/assets/images/image21.png
new file mode 100644
index 000000000..6cb7b2b43
Binary files /dev/null and b/public/assets/images/image21.png differ
diff --git a/public/assets/images/image22.png b/public/assets/images/image22.png
new file mode 100644
index 000000000..c45a22c1c
Binary files /dev/null and b/public/assets/images/image22.png differ
diff --git a/public/assets/images/image23.png b/public/assets/images/image23.png
new file mode 100644
index 000000000..928642628
Binary files /dev/null and b/public/assets/images/image23.png differ
diff --git a/src/components/common/Layout/Layout.tsx b/src/components/common/Layout/Layout.tsx
index af7ab25c7..aa5da11e1 100644
--- a/src/components/common/Layout/Layout.tsx
+++ b/src/components/common/Layout/Layout.tsx
@@ -17,9 +17,9 @@ const Layout: FC = ({ children }) => {
return (
+
+ )
+}
+
+export default BlogsList
\ No newline at end of file
diff --git a/src/components/modules/blogs/index.tsx b/src/components/modules/blogs/index.tsx
index c56accd23..606fe9156 100644
--- a/src/components/modules/blogs/index.tsx
+++ b/src/components/modules/blogs/index.tsx
@@ -1 +1,2 @@
-export { default as FeaturedCardBlog } from './FeaturedCardBlog/FeaturedCardBlog'
\ No newline at end of file
+export { default as FeaturedCardBlog } from './FeaturedCardBlog/FeaturedCardBlog'
+export { default as BlogsList } from './BlogsList/BlogsList'
\ No newline at end of file