url-minify/frontend/pages/index.js

24 lines
578 B
JavaScript
Raw Normal View History

2022-01-31 17:34:21 +00:00
import { useState } from 'react'
import Head from 'next/head'
2022-02-01 15:50:14 +00:00
import HomeSection from "components/HomeSection/homeSection"
import NavBar from "components/NavBar";
2022-01-27 06:35:13 +00:00
export default function Home() {
2022-01-31 17:34:21 +00:00
const [shortUrl, setShortUrl] = useState(null)
const [longURL, setLongURL] = useState('')
return (
2022-02-01 15:50:14 +00:00
<div className={""}>
2022-01-31 17:34:21 +00:00
<Head>
<title>URL MiniFy</title>
<link rel="icon" href="/favicon.ico" />
</Head>
2022-01-27 06:35:13 +00:00
2022-02-01 15:50:14 +00:00
<main className={""}>
<NavBar />
<HomeSection />
2022-01-31 17:34:21 +00:00
</main>
</div>
)
2022-01-27 06:35:13 +00:00
}