SherlockRamos commited on
Commit
398cbdb
·
verified ·
1 Parent(s): 563b9c8

Upload pages/_app.js with huggingface_hub

Browse files
Files changed (1) hide show
  1. pages/_app.js +21 -0
pages/_app.js ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import '../styles/globals.css'
2
+ import { Toaster } from 'react-hot-toast'
3
+ import Layout from '../components/Layout'
4
+
5
+ export default function App({ Component, pageProps }) {
6
+ return (
7
+ <Layout>
8
+ <Toaster
9
+ position="top-right"
10
+ toastOptions={{
11
+ duration: 3000,
12
+ style: {
13
+ background: '#1e3cc4',
14
+ color: '#fff',
15
+ },
16
+
17
+ />
18
+ <Component {...pageProps} />
19
+ </Layout>
20
+ )
21
+ }