dh_demo

DreamHanks demo project
git clone git://git.lair.cx/dh_demo
Log | Files | Refs | README

sent.tsx (547B)


      1 import Title from '@/components/elements/Title'
      2 import Container from '@/components/layout/Container'
      3 import Hero from '@/components/layout/Hero'
      4 import Section from '@/components/layout/Section'
      5 
      6 export default function SignUpSentPage () {
      7   return (
      8     <>
      9       <Hero>
     10         <Title kind="headline">Sign up</Title>
     11       </Hero>
     12 
     13       <Container>
     14         <Section>
     15           <p>메일을 발송했습니다.</p>
     16           <p>메일의 링크를 클릭하여 계속 진행해주세요.</p>
     17         </Section>
     18       </Container>
     19     </>
     20   )
     21 }
     22