diff --git a/app/(defaults)/(blog)/blog/page.tsx b/app/(defaults)/(blog)/blog/page.tsx new file mode 100644 index 0000000..3334644 --- /dev/null +++ b/app/(defaults)/(blog)/blog/page.tsx @@ -0,0 +1,104 @@ +import { Metadata } from 'next'; +import Link from 'next/link'; +import React from 'react'; + +export const metadata: Metadata = { + title: 'Blog', +}; + +const blogs = [ + { + id: 1, + image: '/assets/images/blog/image-1.jpg', + title: 'Excessive sugar is harmful', + description: 'Sugar consumption can have serious effects on your health if taken in excess. Learn how to reduce it.', + author: 'Alma Clark', + profile: '/assets/images/profile-1.jpeg', + date: '06 May', + slug: '/blog/1', + }, + { + id: 2, + image: '/assets/images/blog/image-1.jpg', + title: 'Creative Photography', + description: 'Photography is not just about capturing pictures, but emotions and stories through your lens.', + author: 'Alma Clark', + profile: '/assets/images/profile-2.jpeg', + date: '06 May', + slug: '/blog/2', + }, + { + id: 3, + image: '/assets/images/blog/image-1.jpg', + title: 'Plan your next trip', + description: 'Traveling helps you explore new cultures, food, and make memories that last a lifetime.', + author: 'Alma Clark', + profile: '/assets/images/profile-3.jpeg', + date: '06 May', + slug: '/blog/3', + }, + { + id: 4, + image: '/assets/images/blog/image-1.jpg', + title: 'My latest Vlog', + description: 'Check out my latest vlog where I share behind-the-scenes of my daily life and adventures.', + author: 'Alma Clark', + profile: '/assets/images/profile-4.jpeg', + date: '06 May', + slug: '/blog/4', + }, +]; + +const Blog = () => { + return ( +
{blog.description}
{blog.date}
Preview: