import { ArrowDownOutlined, PlusOutlined } from '@ant-design/icons'; import { Button } from '@imphnen-frontend-service/ui/atoms'; import { FC, ReactElement } from 'react'; export const Components: FC = (): ReactElement => { return (
{/* Dashboard Header */}

Dashboard

{/* Summary Section */}

Summary

{/* Summary Cards */} {[1, 2, 3, 4].map((item) => (

1000

Total Participants

))}
{/* Gacha Items Section */}

Gacha Items

{/* Gacha Items List */}
{[1, 2, 3, 4, 5, 6].map((item) => (

Lanyard IMPHNEN

Prize {item} Chance Rate: (0.1%)
{/* Lebih baik gunakan gambar yang sudah di-clip dengan size height: 78px daripada hard-code object-position dan margin */} Lanyard IMPHNEN
))}
{/* Right-side illustration */}
); }; export default Components;