url-minify/frontend/pages/signup.js

15 lines
310 B
JavaScript
Raw Normal View History

import { useState } from 'react'
import Head from 'next/head'
import NavBar from 'components/NavBar'
import Features from 'components/Features'
import Reg from 'components/Reg/Reg'
2022-02-08 15:21:06 +00:00
2022-02-13 08:28:33 +00:00
export default function signup() {
return (
<div className="flex-column">
<NavBar />
<Reg />
</div>
)
2022-02-13 08:28:33 +00:00
}