From d20f0d89e591458392d83a84bf672505b9613d3e Mon Sep 17 00:00:00 2001 From: Maulana Sodiqin Date: Mon, 17 Mar 2025 12:48:11 +0700 Subject: [PATCH] feat: init backoffice --- apps/backoffice/src/app/page.tsx | 218 +------------------------------ 1 file changed, 2 insertions(+), 216 deletions(-) diff --git a/apps/backoffice/src/app/page.tsx b/apps/backoffice/src/app/page.tsx index 63b8712..f135208 100644 --- a/apps/backoffice/src/app/page.tsx +++ b/apps/backoffice/src/app/page.tsx @@ -1,221 +1,7 @@ -import { ArrowDownOutlined } from '@ant-design/icons'; -import { Button } from '@imphnen-frontend-service/ui/atoms'; -import { cn } from '@imphnen-frontend-service/utils'; -import { FC, Fragment, ReactElement, useEffect } from 'react'; - -interface GachaItemProps { - src: string; - label: string; - className?: string; -} +import { FC, ReactElement } from 'react'; export const Components: FC = (): ReactElement => { - const scrollToRoulette = () => { - const rouletteSection = document.getElementById('roulette'); - if (rouletteSection) { - rouletteSection.scrollIntoView({ behavior: 'smooth' }); - } - }; - - useEffect(() => { - const gachaPlaySection = document.getElementById('gacha-play'); - if (gachaPlaySection) { - let currentIndex = 0; - const items = gachaPlaySection.children; - const totalItems = items.length; - - const scrollItems = () => { - if (currentIndex >= totalItems) { - currentIndex = 0; - } - items[currentIndex].scrollIntoView({ - behavior: 'smooth', - inline: 'center', - }); - currentIndex++; - }; - - const intervalId = setInterval(scrollItems, 2800); - - return () => clearInterval(intervalId); - } - }, []); - - const GachaItem: FC = ({ - src, - label, - className, - }): ReactElement => { - return ( -
-
- -
-

{label}

-
- ); - }; - - return ( - - {/* Landing Page */} -
-
- IMPHNEN Logo - -
-
-

New Merchandise

-

Coming UP

-
-
- Periode Gacha: 1 - 31 Maret 2025 -
-
- -
-

Let's Go Checkout Our Merch &

-

Gacha Your Prize Here

-
- -
- -
-
- Merch 1 - - -
-
- Official Merch IMPHNEN -
-
- ~ 175k ~ -
-
-
-
- Merch 2 - - -
-
- IMPHNEN Mini Merch -
-
- ~ 90k ~ -
-
-
- {/* Roulette Page */} -
-
-
-

Gacha Roulette

-
-

- How to participate -

-

- Kamu harus melakukan pembelian merch batch 2 di shopee IMPHNEN -

-

- How to gacha -

-
    -
  1. First, press the "Spin Now" button
  2. -
  3. - If the merch does not match you can reroll by paying IDR5,000 -
  4. -
  5. If it is appropriate you can submit
  6. -
  7. Then fill in the data for your merch delivery process
  8. -
-
- -
-
- Here Take Your Prize -
-
- - - - - - -
- -
-
- {/* Diffuser & Cloud */} -
-
- ); + return <>Hallo; }; export default Components;