Cleaned up some code and added a somewhat responsive header burger
Some checks failed
A gitea test / Random test (pull_request) Has been cancelled
Some checks failed
A gitea test / Random test (pull_request) Has been cancelled
This commit was merged in pull request #13.
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
import { Hero } from "../components/blocks/hero";
|
||||
import { Layout } from "../components/layout";
|
||||
import { Layout } from "../components/layout/layout";
|
||||
|
||||
export default function FourOhFour() {
|
||||
return (
|
||||
|
||||
@@ -2,7 +2,7 @@ import React from "react";
|
||||
import { InferGetStaticPropsType } from "next";
|
||||
import { Blocks } from "../components/blocks-renderer";
|
||||
import { useTina } from "tinacms/dist/react";
|
||||
import { Layout } from "../components/layout";
|
||||
import { Layout } from "../components/layout/layout";
|
||||
import { client } from "../tina/__generated__/client";
|
||||
|
||||
export default function HomePage(
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import "../styles/_styles.scss";
|
||||
import TagManager from "react-gtm-module";
|
||||
// import TagManager from "react-gtm-module";
|
||||
|
||||
// TagManager.initialize({ gtmId: "" });
|
||||
// TagManager.initialize({ gtmId: "G-GGBB2SV4YC" });
|
||||
const App = ({ Component, pageProps }) => {
|
||||
return <Component { ...pageProps } />;
|
||||
};
|
||||
|
||||
@@ -2,7 +2,7 @@ import { Container } from "../components/util/container";
|
||||
import { Section } from "../components/util/section";
|
||||
import { Posts } from "../components/posts";
|
||||
import { client } from "../tina/__generated__/client";
|
||||
import { Layout } from "../components/layout";
|
||||
import { Layout } from "../components/layout/layout";
|
||||
import { InferGetStaticPropsType } from "next";
|
||||
|
||||
export default function HomePage(
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import { Post } from "../../components/posts/post";
|
||||
import { client } from "../../tina/__generated__/client";
|
||||
import { useTina } from "tinacms/dist/react";
|
||||
import { Layout } from "../../components/layout";
|
||||
import { Layout } from "../../components/layout/layout";
|
||||
import { InferGetStaticPropsType } from "next";
|
||||
|
||||
// Use the props returned by get static props
|
||||
|
||||
Reference in New Issue
Block a user