From b0c3cd6511d6ebb70574825d34d3647ab7f543a9 Mon Sep 17 00:00:00 2001 From: mukeshs Date: Thu, 6 Nov 2025 14:56:05 +0530 Subject: [PATCH] publications admin upload updated --- src/app/blogs-details/[id]/page.tsx | 14 + src/app/{publications => blogs}/page.tsx | 4 +- src/app/education-training/page.tsx | 6 +- src/app/publications-detail/[id]/page.tsx | 6 +- src/components/Layouts/Header.tsx | 2 +- src/components/Publication/Publication.tsx | 319 +++++++++++++++++ .../Publication/Publicationdetails.tsx | 326 ++++++++++++++++++ .../{publications => blogs}/BlogDetail.tsx | 2 +- .../{publications => blogs}/BlogListing.tsx | 2 +- src/components/education/CTASection.tsx | 53 +++ .../education/EducationTraining.tsx | 35 +- src/components/home/HeroSection.tsx | 8 +- 12 files changed, 730 insertions(+), 47 deletions(-) create mode 100644 src/app/blogs-details/[id]/page.tsx rename src/app/{publications => blogs}/page.tsx (69%) create mode 100644 src/components/Publication/Publication.tsx create mode 100644 src/components/Publication/Publicationdetails.tsx rename src/components/{publications => blogs}/BlogDetail.tsx (99%) rename src/components/{publications => blogs}/BlogListing.tsx (99%) create mode 100644 src/components/education/CTASection.tsx diff --git a/src/app/blogs-details/[id]/page.tsx b/src/app/blogs-details/[id]/page.tsx new file mode 100644 index 0000000..64bb1ef --- /dev/null +++ b/src/app/blogs-details/[id]/page.tsx @@ -0,0 +1,14 @@ +import Header from "../../../components/Layouts/Header"; // Adjust path based on your project structure +import { Footer } from "../../../components/Layouts/Footer" +import BlogDetail from "../../../components/blogs/BlogDetail"; + + +export default function blogsdetails() { + return ( + <> +
+ +