+ );
+};
+
+export default ShareButtons;
\ No newline at end of file
diff --git a/src/data/blog.js b/src/data/blog.js
new file mode 100644
index 0000000..5d9879d
--- /dev/null
+++ b/src/data/blog.js
@@ -0,0 +1,49 @@
+const blogs = [
+ {
+ id: 1,
+ title: "Breaking Into Tech: A Beginner's Roadmap for Women",
+ slug: "breaking-into-tech-beginners-roadmap",
+ author: "HerStack Team",
+ date: "2025-05-10",
+ readTime: "5 min read",
+ category: "Career",
+ tags: ["career", "beginners", "roadmap"],
+ excerpt:
+ "Feeling overwhelmed about where to start in tech? Here's a clear, step-by-step guide tailored for women entering the industry.",
+ content:
+ "Full article content goes here. This is placeholder text for now.",
+ coverImage: "/assets/blog/breaking-into-tech.jpg",
+ },
+ {
+ id: 2,
+ title: "Top 10 Open Source Projects to Contribute to as a Beginner",
+ slug: "top-10-open-source-projects-for-beginners",
+ author: "HerStack Team",
+ date: "2025-05-15",
+ readTime: "7 min read",
+ category: "Open Source",
+ tags: ["open-source", "github", "beginners"],
+ excerpt:
+ "Contributing to open source is one of the best ways to grow your skills. Here are 10 beginner-friendly projects to get you started.",
+ content:
+ "Full article content goes here. This is placeholder text for now.",
+ coverImage: "/assets/blog/open-source.jpg",
+ },
+ {
+ id: 3,
+ title: "How to Ace Your First Technical Interview",
+ slug: "how-to-ace-your-first-technical-interview",
+ author: "HerStack Team",
+ date: "2025-05-20",
+ readTime: "6 min read",
+ category: "Interview Prep",
+ tags: ["interview", "dsa", "career"],
+ excerpt:
+ "Technical interviews can be nerve-wracking. Here's everything you need to know to walk in confident and prepared.",
+ content:
+ "Full article content goes here. This is placeholder text for now.",
+ coverImage: "/assets/blog/technical-interview.jpg",
+ },
+];
+
+export default blogs;
\ No newline at end of file
diff --git a/src/main.jsx b/src/main.jsx
index aca6ade..5e24734 100644
--- a/src/main.jsx
+++ b/src/main.jsx
@@ -2,6 +2,7 @@ import React from 'react'
import ReactDOM from 'react-dom/client'
import { BrowserRouter } from 'react-router-dom'
import App from './App'
+import './styles/globals.css'
ReactDOM.createRoot(document.getElementById('root')).render(