import ThurayConstellation, { ThurayConstellationProps } from '@/components/ui/thuray-constellation';
const settings = {
gold: '#C9A227',
star: '#F4F2EA',
void: '#050505',
muted: '#8A6D1F',
reveal: 1,
style: {
width: '100%',
height: '70vh',
minHeight: 460,
borderRadius: 0,
border: '1px solid rgba(244,242,234,0.07)',
},
} satisfies ThurayConstellationProps;
export default function Demo() {
return (
<div
style={{
background: '#050505',
padding: '1.5rem',
fontFamily: 'IBM Plex Mono, monospace',
}}
>
<div
style={{
marginBottom: '1rem',
color: '#8B8B8B',
fontSize: 11,
letterSpacing: '.28em',
textTransform: 'uppercase',
}}
>
THURAY · M45 · Seven works — hover a star to ignite its flare
</div>
<ThurayConstellation {...settings} />
</div>
);
}