Skip to content

Commit

Permalink
basic landing layout setup
Browse files Browse the repository at this point in the history
  • Loading branch information
rvilgalys committed May 16, 2020
1 parent c281ad2 commit 330b292
Show file tree
Hide file tree
Showing 9 changed files with 982 additions and 206 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,5 @@ yarn-error.log*
.env.development.local
.env.test.local
.env.production.local

.vercel
13 changes: 13 additions & 0 deletions components/Layout.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import Head from "next/head";

const Layout = ({ children }) => (
<>
<Head>
<title>{"🦖 Rim.Works 🦕"}</title>
<link rel="stylesheet" href="https://use.typekit.net/zdk0lrz.css"></link>
</Head>
{children}
</>
);

export default Layout;
Loading

0 comments on commit 330b292

Please sign in to comment.