diff --git a/components/Container.tsx b/components/Container.tsx
index 3e37aa4..4c50c01 100644
--- a/components/Container.tsx
+++ b/components/Container.tsx
@@ -1,12 +1,15 @@
-const Container = ({ className, children }:ContainerProps): JSX.Element => {
+const Container = ({ ignoreColor, className, children }:ContainerProps): JSX.Element => {
return (
-
- {children}
+
)
}
interface ContainerProps {
+ ignoreColor?: boolean
className?: string
children: JSX.Element | JSX.Element[]
}
diff --git a/pages/_app.tsx b/pages/_app.tsx
index b4d21a0..e8802dd 100644
--- a/pages/_app.tsx
+++ b/pages/_app.tsx
@@ -48,9 +48,7 @@ export default function App({ Component, pageProps }: AppProps): JSX.Element {
-
-
-
+
)
diff --git a/pages/_document.tsx b/pages/_document.tsx
index df545ff..7874f3e 100644
--- a/pages/_document.tsx
+++ b/pages/_document.tsx
@@ -28,7 +28,7 @@ class MyDocument extends Document {
}}
/>
-
+