diff --git a/pages/_app.tsx b/pages/_app.tsx index baf09d2..ab02dab 100644 --- a/pages/_app.tsx +++ b/pages/_app.tsx @@ -1,16 +1,14 @@ import React from "react"; -import App, { Container } from "next/app"; +import App from "next/app"; import MainTheme from "../styles/MainTheme"; export default class extends App { render() { const { Component, pageProps } = this.props; return ( - - - - - + + + ); } }