a0c202546e
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
13 lines
441 B
TypeScript
13 lines
441 B
TypeScript
import type { Metadata } from "next";
|
|
import TourClient from "./TourClient";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "VR360 Chùa Thái Lạc (Pháp Vân tự)",
|
|
description:
|
|
"Trải nghiệm tham quan thực tế ảo 360° Chùa Thái Lạc (Pháp Vân tự), di tích quốc gia tại Xã Như Quỳnh, tỉnh Hưng Yên.",
|
|
};
|
|
|
|
export default function ChuaThaiLacTourPage() {
|
|
return <TourClient tourId="chua-thai-lac" />;
|
|
}
|