summaryrefslogtreecommitdiff
path: root/src/pages/activate.jsx
blob: 7f4b6056c8c036f848a3a3e20f4fcf934c7d31cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import Seo from '@/core/components/Seo'
import SimpleFooter from '@/core/components/elements/Footer/SimpleFooter'
import ActivateComponent from '@/lib/auth/components/Activate'

export default function Activate() {
  return (
    <>
      <Seo title='Aktivasi Akun Indoteknik.com' />
      <ActivateComponent />
      <SimpleFooter />
    </>
  )
}