diff --git a/src/pages/post/index.tsx b/src/pages/post/index.tsx
new file mode 100644
index 00000000..7c5dc85c
--- /dev/null
+++ b/src/pages/post/index.tsx
@@ -0,0 +1,25 @@
+// import dynamic from 'next/dynamic';
+
+import Banner from '@/components/layout/Banner';
+import Layout from '@/components/layout/Layout';
+// import KaKaoMap from '@/components/postDetail/KaKaoMap';
+// import MapPreview from '@/components/postDetail/MapPreview';
+import ReviewList from '@/components/postDetail/ReviewList';
+
+// const MapPreviewNoSSR = dynamic(() => import('@/components/postDetail/MapPreview'), { ssr: false });
+
+const PostPage = () => {
+ return (
+ <>
+
+
+ {/* */}
+ >
+ );
+};
+
+export default PostPage;
+
+PostPage.FullLayout = Layout;