I have same issue. Need to pass context in {children} and my context is also in CamelCase but no luck still undefined,
return (
<GoogleOAuthProvider clientId={clientID}>
<ProfileContext.Provider value={Profile}>
<html lang="en">
<body className={`${Font.variable}`}>
<Navbar />
{children}
<Footer />
<ProgressBar />
<button className={`scrollToTopButton ${isVisible ? "visible" : ""}`} onClick={scrollToTop}>
<FontAwesomeIcon icon={faAngleUp} style={{ width: "22px", height: "32px" }} />
</button>
</body>
</html>
</ProfileContext.Provider>
</GoogleOAuthProvider>
)
}
"use client"
// import Form from "next/form "
import { useState, useEffect, useContext } from "react"
import Button from "../Components/Button"
import ProfileContext from "../layout"
export default function Contact() {
const [name, setName] = useState()
const [email, setEmail] = useState()
const [message, setMessage] = useState()
const [mobile, setMobile] = useState()
const [service, setService] = useState()
const [isSubmitted, setiSSubmitted] = useState(false)
const [isLoading, setIsLoading] = useState(false)
const value = useContext(ProfileContext)
async function HandleSubmit(e) {
setIsLoading(true)
e.preventDefault()
let body = {
cred: process.env.NEXT_PUBLIC_CRED,
email: email,
mobile: mobile,
when: new Date().toLocaleDateString(),
message: message,
name: name,
service: service,
}
let res = await fetch("/api/contact", {
method: "POST",
headers: {
"Content-Type": "application/json",
},
body: JSON.stringify(body),
}).then(function (response) {
console.info(response)
setIsLoading(false)
setiSSubmitted(true)
})
}
console.log(value)
Importing context in another component gives undefined. I don't need to switch to app router, any other solution you guys found ?