diff --git a/next.config.js b/next.config.js
index f491e4c..10c7ec3 100644
--- a/next.config.js
+++ b/next.config.js
@@ -1,7 +1,5 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
- basePath: '/TRAVEL-TIPPLER',
- trailingSlash: true,
images: {
domains: ["www.traveltippler.com"],
unoptimized: true,
diff --git a/src/app/category/[categoryIds]/page.js b/src/app/category/[categoryIds]/page.js
index a274abf..d41bb7f 100644
--- a/src/app/category/[categoryIds]/page.js
+++ b/src/app/category/[categoryIds]/page.js
@@ -1,17 +1,54 @@
-import React from "react";
-import CategoryDetail from "@/pages/CategoryDetail/CategoryDetail";
+"use client";
+import React from 'react'
+import Follow from "@/pages/Category/Social_Links";
+import RecentPost from "@/pages/Category/RecentPost";
+import CategorysList from "@/pages/Category/CategorysList";
+import { useParams } from 'next/navigation';
+import CATEGORYs from '@/components/helper/CATEGORYs';
+import Category_Post from '@/pages/Category/Category_Post';
+import useCategoryName from '@/components/hooks/ConvertCaps';
+import formatCategory from '@/components/hooks/ConvertSmall';
-const CategoryIds = () => {
- // const postData = await fetchPostLists();
-
- return (
-