Move guest links to guest.hotelsync.ru subdomain

/review/:slug and /room-service/:slug guest pages now link to
guest.hotelsync.ru instead of app.hotelsync.ru

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-16 20:29:14 +03:00
parent d661bbbc84
commit e81de90855
2 changed files with 2 additions and 2 deletions

View File

@@ -96,7 +96,7 @@ const MOCK_REVIEWS: Review[] = [
},
]
const REVIEW_LINK = 'https://app.hotelsync.ru/review/grand-palace'
const REVIEW_LINK = 'https://guest.hotelsync.ru/review/grand-palace'
const SOURCE_LABEL: Record<Review['source'], string> = { qr: 'QR-код', email: 'Email', sms: 'SMS' }

View File

@@ -120,7 +120,7 @@ function elapsed(from: Date): string {
type PageTab = 'orders' | 'menu' | 'settings'
const GUEST_LINK = 'https://app.hotelsync.ru/room-service/grand-palace'
const GUEST_LINK = 'https://guest.hotelsync.ru/room-service/grand-palace'
export function RoomServicePage() {
const { addNotification } = useNotifications()