page.tsx 848 B

12345678910111213141516171819202122232425262728293031
  1. import '../style.scss';
  2. import { Metadata } from 'next';
  3. import PaperNav from '../_components/PaperNav';
  4. import PaperTradeForm from '../_components/PaperTradeForm';
  5. import PaperNotice from '../_components/PaperNotice';
  6. import PaperAuthGate from '../_components/PaperAuthGate';
  7. export const metadata: Metadata = {
  8. title: '모의투자 주문 — 개미투자',
  9. description: '종목을 검색해 매수·매도 주문을 접수합니다 (지연 체결형)'
  10. };
  11. export default function PaperTradePage()
  12. {
  13. return (
  14. <div className='paper'>
  15. <div className='paper__head'>
  16. <h1 className='paper__title'>주문</h1>
  17. <span className='paper__subtitle'>종목 검색 후 매수·매도 주문을 접수하세요</span>
  18. </div>
  19. <PaperNav />
  20. <PaperAuthGate>
  21. <PaperTradeForm />
  22. </PaperAuthGate>
  23. <PaperNotice />
  24. </div>
  25. );
  26. }