diff --git a/cpsquad/app/Blog-section/page.jsx b/cpsquad/app/Blog-section/page.jsx
new file mode 100644
index 0000000..a249205
--- /dev/null
+++ b/cpsquad/app/Blog-section/page.jsx
@@ -0,0 +1,42 @@
+"use client";
+
+import Link from "next/link";
+import { Button } from "../component/ui/button";
+
+const BlogSection = () => {
+ return (
+
+ {/* 🔹 Animated Laser Background */}
+
+
+ {/* 🔹 Content */}
+
+
+ Explore Our Blog
+
+
+ Discover insightful articles on web development, design, and technology
+
+
+
+
+
+
+ {/* 🔹 Optional Floating Lights */}
+
+
+
+ );
+};
+
+export default BlogSection;
+
diff --git a/cpsquad/app/blogs/page.jsx b/cpsquad/app/blogs/page.jsx
new file mode 100644
index 0000000..5f11803
--- /dev/null
+++ b/cpsquad/app/blogs/page.jsx
@@ -0,0 +1,32 @@
+"use client";
+import BlogCard from "../component/BlogCard/BlogCard";
+import blogdata from "../lib/data/blogdata"; // adjust path if your data file is elsewhere
+
+export default function BlogsPage() {
+ return (
+
-
-
- OUR BLOGS_
-
-
-
-
- {blogdata.slice(0, 3).map((item, id) => (
-
- ))}
-
-
-
-
-
-
-
+