Skip to content

Instantly share code, notes, and snippets.

@SahanAmarsha
Created February 28, 2021 20:36
Show Gist options
  • Save SahanAmarsha/386a4011be8582f90115c362593c6d30 to your computer and use it in GitHub Desktop.
Save SahanAmarsha/386a4011be8582f90115c362593c6d30 to your computer and use it in GitHub Desktop.
index.js
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