From 5897bbdcf04db6fedb1f8247c67648a0179e2e46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nguy=E1=BB=85n=20M=E1=BA=A1nh=20D=C5=A9ng?= Date: Fri, 27 Mar 2026 00:02:40 +0700 Subject: [PATCH] feat: add destiny room fortune telling experience --- src/views/destiny-room/index.vue | 533 +++++++++++++++++++++++++++++++ src/views/destiny-room/meta.ts | 11 + 2 files changed, 544 insertions(+) create mode 100644 src/views/destiny-room/index.vue create mode 100644 src/views/destiny-room/meta.ts diff --git a/src/views/destiny-room/index.vue b/src/views/destiny-room/index.vue new file mode 100644 index 00000000..3982b6aa --- /dev/null +++ b/src/views/destiny-room/index.vue @@ -0,0 +1,533 @@ + + + diff --git a/src/views/destiny-room/meta.ts b/src/views/destiny-room/meta.ts new file mode 100644 index 00000000..6bced468 --- /dev/null +++ b/src/views/destiny-room/meta.ts @@ -0,0 +1,11 @@ +import type { PageMeta } from '@/types/page' + +const meta: PageMeta = { + name: 'Căn Phòng Chọn Người', + description: 'Bạn không chọn trải nghiệm — trải nghiệm chọn bạn. Nhận vé định mệnh.', + author: 'nmdung.dev', + facebook: 'https://www.facebook.com/nmdung.dev', + category: 'spiritual', +} + +export default meta