"use client"; import React, { useState } from "react"; import { Card, CardHeader, CardContent } from "@/components/ui/card"; import { Button } from "@/components/ui/button"; import Link from "next/link"; import Image from "next/image"; const BlogPost = ({ title, author, date, excerpt, imageUrl }) => (
{title

{title}

{author} | {date}

{excerpt}

); const PopularArticle = ({ title, author, date }) => (

{title}

{author} | {date}

); const BlogHome = () => { const [currentPage, setCurrentPage] = useState(1); const postsPerPage = 3; const recentBlogPosts = [ { title: "Benefits of Wearing Rudraksha Mala", author: "Gupta Rudraksha", date: "29 August, 2024", excerpt: "Rudraksha are sacred beads of great significance in Hinduism and various spiritual practices. The term Rudraksha combines two Sanskrit words: 'Rudra,' another name for Lord Sh...", imageUrl: "/blogs/significance-of-dhanteras.webp", }, { title: "Shravan Maas for Spiritual Growth and Divine Connection", author: "Gupta Rudraksha", date: "04 September, 2024", excerpt: "Shrawan Mass, a sacred month in the Hindu calendar, holds deep spiritual significance for millions of devotees. But what exactly is Shravan Maas, and why is it so important? Let...", imageUrl: "/blogs/navaratri-siginificance.webp", }, { title: "The Complete Guide to Rudraksha Energization", author: "Gupta Rudraksha", date: "28 August, 2024", excerpt: "For centuries, Rudraksha beads have been valued not only for their aesthetic beauty, but also for their powerful spiritual and healing properties. Whether you're a seasoned prac...", imageUrl: "/blogs/rudraksha-pran-pratishtha-pooja.webp", }, { title: "Strengthening Planetary Forces with Rudraksha", author: "Gupta Rudraksha", date: "26 April, 2024", excerpt: "In the vast universe, planets hold immense power over our lives, influencing everything from our moods to our destinies. However, Rudraksha beads, ancient treasures from the ear...", imageUrl: "/api/placeholder/300/200", }, ]; const popularArticles = [ { title: "Dhanteras Significance and How Rudraksha Brings Prosperity", author: "Gupta Rudraksha", date: "30 September, 2024", }, { title: "Certified Rudraksha: Nepal's 1st ISO 9001:2015 Certified Organization", author: "Gupta Admin", date: "30 September, 2024", }, ]; const indexOfLastPost = currentPage * postsPerPage; const indexOfFirstPost = indexOfLastPost - postsPerPage; const currentPosts = recentBlogPosts.slice(indexOfFirstPost, indexOfLastPost); const paginate = (pageNumber) => setCurrentPage(pageNumber); return (

Insights from Gupta Rudraksha

Explore our latest articles on the spiritual, cultural, and healing aspects

{/* top container for one blog card */}
images blog

Dhanteras Significance and How Rudraksha Brings Prosperity and Protection

Gupta Rudraksha | 30 September, 2024

Dhanteras, the first day of Diwali festival, marks a unique celebration of wealth and prosperity in Hindu tradition. As the name suggests - 'Dhan' meaning wealth and 'Teras' ref

Popular Articles

{popularArticles.map((article, index) => ( ))}

Recent Blogs

{currentPosts.map((post, index) => ( ))}
{[...Array(Math.ceil(recentBlogPosts.length / postsPerPage))].map( (_, index) => ( ) )}

Popular Articles

{popularArticles.map((article, index) => ( ))}
); }; export default BlogHome;