url-minify/frontend/pages/signup.js

22 lines
524 B
JavaScript
Raw Normal View History

2022-04-30 16:19:56 +00:00
import { useState, useContext } from 'react'
import Head from 'next/head'
import NavBar from 'components/NavBar'
import Features from 'components/Features'
import Reg from 'components/Reg/Reg'
import Footer from 'components/Footer/Footer'
2022-04-30 16:19:56 +00:00
import UserAuth, { UserContext } from '../helpers/user/usercontext'
2022-02-08 15:21:06 +00:00
2022-02-13 08:28:33 +00:00
export default function signup() {
2022-04-30 16:19:56 +00:00
const { mode } = useContext(UserAuth)
return <>
<div className={mode == 'light' ? 'flex-column' : 'dark-bg'}>
<NavBar />
<Reg />
<Footer />
</div>
</>
2022-02-13 08:28:33 +00:00
}