'use client'; import { AlertDialog, AlertDialogContent, AlertDialogTitle } from '@/components/ui/alert-dialog'; import { Chip } from '@/components/ui/chip'; import IconFont from '@/components/ui/iconFont'; import Link from 'next/link'; import { useState } from 'react'; type StoryDialogProps = { open: boolean; onOpenChange: (open: boolean) => void; }; export default function StoryDialog({ open, onOpenChange }: StoryDialogProps) { const tags = [ { label: 'CEO', value: 'ceo', }, { label: 'Contract', value: 'contract', }, { label: 'Lover', value: 'lover', }, { label: 'Bossy', value: 'bossy', }, { label: 'Billionaire', value: 'billionaire', }, ]; return (
The Bossy CEO’s Contract Lover
{tags.map((tag) => ( # {tag.label} ))}
In an era where memories can be digitally extracted and traded, Chen Mo is the most elite "memory trader" on the black market. He deals in sweet first loves and moments of triumph, but also handles guilty memories too dark to see the light. One day, he takes on a memory file from a suicide victim. Inside, he sees his own face—holding the murder weapon. At the same time, city-wide alarms sound because of him, and the memory agents known as "Silencers"... have locked onto his location. To uncover the truth, he must delve into this fatal memory...
All Characters
Group Chat
); }