blog page added

This commit is contained in:
victorAnumudu
2025-01-06 23:15:59 +01:00
parent b6ef222d0b
commit 5f21206604
4 changed files with 291 additions and 275 deletions
+4 -1
View File
@@ -10,6 +10,7 @@ import "/public/css/lunar.css"
import "/public/css/animate.css"
import "/public/css/merms.css"
import "/public/css/responsive.css"
import QueryClientContext from "../components/queryclientProvider/QueryClientContext"
function MyApp({ Component, pageProps }) {
@@ -24,7 +25,9 @@ function MyApp({ Component, pageProps }) {
{/* <SmoothScroll /> */}
{!loading ? (
// <ProductHome />
<Component {...pageProps} />
<QueryClientContext>
<Component {...pageProps} />
</QueryClientContext>
) : (
<Preloader />
)}