This is a Next.js project bootstrapped with create-next-app
.
First, run the development server:
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev
Open http://localhost:3000 with your browser to see the result.
You can start editing the page by modifying app/page.tsx
. The page auto-updates as you edit the file.
This project uses next/font
to automatically optimize and load Inter, a custom Google Font.
Before running the project locally, you need to set up an environment variable with your Project ID. Follow these steps:
-
Create a
.env
File
In the root directory of the project, create a file named.env
and add the following line:NEXT_PUBLIC_PROJECT_ID=your-project-id
-
Obtain Your Project ID
To get youryour-project-id
value:- Visit Reown Cloud.
- Create an account or log in if you already have one.
- Create a new project within the dashboard.
- Once the project is created, locate your project key (this may be labeled as "Project ID" or "API Key").
- Copy the key and paste it into your
.env
file in place ofyour-project-id
.
After setting up the environment variable, you can run the development server as described above.
To learn more about Next.js, take a look at the following resources:
- Next.js Documentation - learn about Next.js features and API.
- Learn Next.js - an interactive Next.js tutorial.