footer + blog post

This commit is contained in:
Artur Akmalov
2023-04-26 18:06:26 +05:00
parent 3d14d8de70
commit bbf241c62e
8 changed files with 75 additions and 18 deletions
+9 -4
View File
@@ -1,14 +1,19 @@
import * as React from "react"
import Header from "../components/header"
import Footer from "../components/footer"
const AboutPage = () => {
return (
<main>
<Header></Header>
<h1 className="text-3xl font-bold">
About page
</h1>
<Header />
<div className="mx-auto max-w-screen-xl">
<div className="ml-7 mt-6 justify-between">
<h1>About page</h1>
<p>Info about me</p>
</div>
</div>
<Footer />
</main>
)
}
+1 -1
View File
@@ -1,7 +1,7 @@
import * as React from "react"
// import { Link } from 'gatsby'
import Footer from "../components/footer"
import Header from "../components/header"
import Footer from "../components/footer"
const IndexPage = () => {
return (