Created
February 28, 2021 20:36
-
-
Save SahanAmarsha/386a4011be8582f90115c362593c6d30 to your computer and use it in GitHub Desktop.
index.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from "react"; | |
import Head from "next/head"; | |
import Navbar from "../components/Navbar"; | |
export default function Home() { | |
return ( | |
<div className="w-100 h-100 d-flex flex-column justify-content-start"> | |
<Head> | |
<title>Profile App</title> | |
<link rel="icon" href="/favicon.ico" /> | |
</Head> | |
<Navbar /> | |
</div> | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment