home page working, etc

This commit is contained in:
2020-09-24 09:56:56 -05:00
parent f8842bd7c7
commit a80ae21fd2
8 changed files with 136 additions and 71 deletions

View File

@@ -3,10 +3,10 @@ import Header from './header';
import Footer from './footer';
import Nav from './nav';
export default function Layout({ children }) {
export default function Layout({ title, tagline, children }) {
return (
<div>
<Header />
<Header title={title} tagline={tagline} />
<Nav />
<main>
<div className="container">