From 19ae1cbe4b4ae15a3ed80872dbc92d2d8fc2613f Mon Sep 17 00:00:00 2001 From: Vxrcel Date: Thu, 25 Jul 2024 23:19:05 +0100 Subject: [PATCH] redeploy --- src/app/(landing-routes)/(home)/blog/page.tsx | 121 ------------------ 1 file changed, 121 deletions(-) delete mode 100644 src/app/(landing-routes)/(home)/blog/page.tsx diff --git a/src/app/(landing-routes)/(home)/blog/page.tsx b/src/app/(landing-routes)/(home)/blog/page.tsx deleted file mode 100644 index 4a350b370..000000000 --- a/src/app/(landing-routes)/(home)/blog/page.tsx +++ /dev/null @@ -1,121 +0,0 @@ -"use client"; - -import { useRouter } from "next/navigation"; - -import CustomButton from "~/components/common/common-button/common-button"; -import BlogCard from "~/components/layouts/BlogCards"; -import { - blogCard1, - blogCard2, - blogCard3, - blogCard4, - blogCard5, - blogCard6, -} from "../../../../../public/images/blogPage/utils"; -import HeroSection from "../../../../components/extDynamicPages/blogCollection/BlogPageHero"; - -export const blogPosts = [ - { - id: 1, - title: "The Power of Networking: How to Build Meaningful Connections", - date: "Jul 12, 2024", - readTime: "5", - category: "Business", - image: blogCard1, - labelClassName: "bg-primary", - author: "Nora Nora", - }, - { - id: 2, - title: "The Global Impact of Climate Change: A Look at the Evidence", - date: "Jul 12, 2024", - readTime: "5", - category: "World News", - image: blogCard2, - labelClassName: "bg-warning", - author: "Jane Doe", - }, - { - id: 3, - title: "5 Easy and Delicious Recipes for Busy Weeknights", - date: "Jul 12, 2024", - readTime: "5", - category: "Food", - image: blogCard3, - labelClassName: "bg-success", - author: "John Doe", - }, - { - id: 4, - title: "5 Simple Habits to Improve Your Mental Wellbeing", - date: "Jul 12, 2024", - readTime: "5", - category: "Lifestyle", - image: blogCard4, - labelClassName: "bg-primary", - author: "Jane Doe", - }, - { - id: 5, - title: "The Ultimate Guide to Dressing Stylishly with Fewer Clothes", - date: "Jul 12, 2024", - readTime: "5", - category: "Fashion", - image: blogCard5, - labelClassName: "bg-success", - author: "John Doe", - }, - { - id: 6, - title: "The Future of Travel: What Will the World Look Like in 2030?", - date: "Jul 12, 2024", - readTime: "5", - category: "World News", - image: blogCard6, - labelClassName: "bg-warning", - author: "Nora Nora", - }, -]; -const BlogHome = () => { - const router = useRouter(); - - return ( -
- -
-

- Recent Blog Posts -

-
- {blogPosts.map((post, index) => ( - { - localStorage.setItem("currentBlogPost", JSON.stringify(post)); - router.push(`/blog/$?id=${post.id}`); - }} - /> - ))} -
-
-
- - Show More Articles - -
-
- ); -}; - -export default BlogHome;