MCPcopy Create free account
hub / github.com/CodeWithHarry/Sigma-Web-Dev-Course / Home

Function Home

Video 134/environment-variables/app/page.js:3–11  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1import Image from "next/image";
2
3export default function Home() {
4 // console.log("The id is: ", process.env.ID)
5 // console.log("The secret is: ", process.env.SECRET)
6 return (
7 <div>
8 Hey this is home. The id is {process.env.NEXT_PUBLIC_ID} and secret is {process.env.SECRET} and name is {process.env.NAME}
9 </div>
10 );
11}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected