diff --git a/src/app/tour/chua-thai-lac/TourClient.tsx b/src/app/tour/chua-thai-lac/TourClient.tsx
new file mode 100644
index 0000000..c7d9a5b
--- /dev/null
+++ b/src/app/tour/chua-thai-lac/TourClient.tsx
@@ -0,0 +1,16 @@
+"use client";
+
+import dynamic from "next/dynamic";
+
+const VirtualTour = dynamic(() => import("@/app/components/VirtualTour"), {
+ ssr: false,
+ loading: () => (
+
+
Đang tải không gian 360°…
+
+ ),
+});
+
+export default function TourClient({ tourId }: { tourId?: string }) {
+ return
;
+}
diff --git a/src/app/tour/chua-thai-lac/page.tsx b/src/app/tour/chua-thai-lac/page.tsx
index 1c29f06..e0c1f37 100644
--- a/src/app/tour/chua-thai-lac/page.tsx
+++ b/src/app/tour/chua-thai-lac/page.tsx
@@ -1,5 +1,5 @@
import type { Metadata } from "next";
-import VirtualTour from "@/app/components/VirtualTour";
+import TourClient from "./TourClient";
export const metadata: Metadata = {
title: "VR360 Chùa Thái Lạc (Pháp Vân tự)",
@@ -8,5 +8,5 @@ export const metadata: Metadata = {
};
export default function ChuaThaiLacTourPage() {
- return
;
+ return
;
}