From 35bc25cdc0304feafe9db14ec11d4fcc181236e2 Mon Sep 17 00:00:00 2001 From: tuyenio Date: Tue, 23 Jun 2026 11:27:35 +0700 Subject: [PATCH] =?UTF-8?q?feat:=20trang=20danh=20m=E1=BB=A5c=2015=20di=20?= =?UTF-8?q?t=C3=ADch=20Nh=C6=B0=20Qu=E1=BB=B3nh=20c=C3=B3=20b=E1=BB=99=20l?= =?UTF-8?q?=E1=BB=8Dc=20theo=20c=E1=BA=A5p?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/di-tich/page.tsx | 89 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 89 insertions(+) create mode 100644 src/app/di-tich/page.tsx diff --git a/src/app/di-tich/page.tsx b/src/app/di-tich/page.tsx new file mode 100644 index 0000000..c019312 --- /dev/null +++ b/src/app/di-tich/page.tsx @@ -0,0 +1,89 @@ +import type { Metadata } from "next"; +import Image from "next/image"; +import Link from "next/link"; +import { Mail, MapPinned } from "lucide-react"; +import { BackToTopButton } from "@/app/components/landing/BackToTopButton"; +import { CulturalSpaceExplorer } from "@/app/components/landing/CulturalSpaceExplorer"; +import { SiteFooter } from "@/app/components/landing/SiteFooter"; +import { SiteHeader } from "@/app/components/landing/SiteHeader"; +import { activeTour, heritageSites } from "@/app/content"; + +export const metadata: Metadata = { + title: "Di tích | VR360 Như Quỳnh", + description: + "Danh sách toàn bộ di tích lịch sử — văn hóa và tour VR360 của Xã Như Quỳnh, tỉnh Hưng Yên.", +}; + +export default function HeritageListPage() { + return ( +
+ + +
+ + +
+
+

Danh sách di tích và tour VR360

+

+ Hệ thống di tích Xã Như Quỳnh +

+

+ Khám phá 15 di tích lịch sử — văn hóa của Xã Như Quỳnh: 9 di tích xếp hạng cấp quốc gia và 6 di tích cấp tỉnh. +

+
+ + + {heritageSites.length} địa điểm + + + + {heritageSites.filter((site) => site.isAvailable).length} tour đang mở + +
+
+ +
+ Di sản văn hóa Xã Như Quỳnh +
+
+
+ + + +
+
+
+

Đề xuất địa điểm

+

+ Bạn muốn đề xuất thêm địa điểm văn hóa? +

+

+ Gửi thông tin, hình ảnh hoặc câu chuyện liên quan để cùng hoàn thiện kho tư liệu số của Xã Như Quỳnh. +

+
+ + + Liên hệ với chúng tôi + +
+
+ + + +
+ ); +}