-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomment
More file actions
50 lines (49 loc) · 1.77 KB
/
comment
File metadata and controls
50 lines (49 loc) · 1.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import BlogCard from '@/components/lib/BlogCard'
import Layout from '@/components/layout'
import React from 'react'
const Blogs = () => {
return (
<div className='bg-gray-100 min-h-screen'>
<Layout title={'Blogs'}>
<div className='container mx-auto '>
<h1 className='container text-3xl pt-36 flex justify-center pb-16 max-sm:pt-14 max-sm:pb-14'>
Blogs
</h1>
<div className='flex flex-col max-sm:mx-3'>
<div
className={'grid w-full xl:grid-cols-3 md:grid-cols-2 sm:grid-cols-1 gap-7 mb-10 '}
>
<BlogCard
title={'Web Design Done Well: Delightful Data Visualization Examples'}
span={'UI/UX DESIGN'}
/>
<BlogCard
title={'Web Design Done Well: Delightful Data Visualization Examples'}
span={'UI/UX DESIGN'}
/>
<BlogCard
title={'Web Design Done Well: Delightful Data Visualization Examples'}
span={'UI/UX DESIGN'}
/>
</div>
<div className={'grid w-full xl:grid-cols-3 md:grid-cols-2 sm:grid-cols-1 gap-7'}>
<BlogCard
title={'Web Design Done Well: Delightful Data Visualization Examples'}
span={'UI/UX DESIGN'}
/>
<BlogCard
title={'Web Design Done Well: Delightful Data Visualization Examples'}
span={'UI/UX DESIGN'}
/>
<BlogCard
title={'Web Design Done Well: Delightful Data Visualization Examples'}
span={'UI/UX DESIGN'}
/>
</div>
</div>
</div>
</Layout>
</div>
)
}
export default Blogs