Skip to content

Commit

Permalink
:x
Browse files Browse the repository at this point in the history
  • Loading branch information
jjramirezn committed Oct 23, 2024
1 parent 91445f3 commit b4a05a8
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import '@/styles/globals.css'
import { Roboto_Flex, Londrina_Solid, Sniglet } from 'next/font/google'
import CrispChat from '../components/CrispChat'
import { PeanutProvider } from '@/config'
import { ContextProvider } from '@/config'
import * as context from '@/context'
import { FooterVisibilityProvider } from '@/context/footerVisibility'

const roboto = Roboto_Flex({
Expand Down Expand Up @@ -31,13 +31,12 @@ export default function RootLayout({ children }: { children: React.ReactNode })
<html lang="en">
<body className={`${roboto.variable} ${londrina.variable} ${sniglet.variable} chakra-ui-light font-sans`}>
<PeanutProvider>
<ContextProvider>
<CrispChat />
<context.ContextProvider>
<FooterVisibilityProvider>
{children}
<CrispChat />
</FooterVisibilityProvider>
<CrispChat />
</ContextProvider>
</context.ContextProvider>
</PeanutProvider>
</body>
</html>
Expand Down

0 comments on commit b4a05a8

Please sign in to comment.