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 (

Blogs

{/* ✅ First box: Create New Blog */}
+
Create New Blog
{blogs.map((blog) => (
{blog.title}
{/* ✅ Description first, then Title */}
{blog.title}

{blog.description}

{/*
{blog.author}

{blog.author}

{blog.date}

*/} {/* ✅ Read More button */}
Read More
))}
); }; export default Blog;