diff --git a/.eslintrc.json b/.eslintrc.json
index 6699e02..f9406b5 100644
--- a/.eslintrc.json
+++ b/.eslintrc.json
@@ -10,6 +10,7 @@
"object-curly-newline": "off",
"react/require-default-props": "off",
"implicit-arrow-linebreak": "off",
- "function-paren-newline": "off"
+ "function-paren-newline": "off",
+ "@typescript-eslint/indent": "off"
}
}
diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 86de46b..40012da 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -4,11 +4,12 @@ import { Inter } from 'next/font/google';
import { Analytics } from '@vercel/analytics/react';
import { SpeedInsights } from '@vercel/speed-insights/next';
import Provider from '@/providers';
-import './globals.css';
import Header from '@/components/header';
import Footer from '@/components/footer';
+import ChannelTalk from '@/components/channel-talk';
import Favicon from '../../public/favicon.ico';
import AppleTouch from '../../public/apple-touch-icon.png';
+import './globals.css';
const inter = Inter({ subsets: ['latin'] });
@@ -56,6 +57,7 @@ export default function RootLayout({ children }: Props) {
+