Skip to content

Commit

Permalink
Adding Contact page
Browse files Browse the repository at this point in the history
  • Loading branch information
saaifali committed Jan 4, 2022
1 parent 65102c7 commit f6009c7
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
17 changes: 17 additions & 0 deletions pages/contact.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import Head from 'next/head'
import About from "../components/About";

export default function Home() {
return (
<div className="space-y-14 lg:space-y-24">
<Head>
<title>Contact - Saif Ali</title>
<link rel="icon" href="/favicon.ico" />
</Head>

<main className="max-w-4xl mx-auto mt-16 antialiased">
<About/>
</main>
</div>
)
}
2 changes: 1 addition & 1 deletion pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export default function Home() {
return (
<div className="space-y-14 lg:space-y-24">
<Head>
<title>Create Next App</title>
<title>Portfolio - Saif Ali</title>
<link rel="icon" href="/favicon.ico" />
</Head>

Expand Down

0 comments on commit f6009c7

Please sign in to comment.