Skip to content

Commit ce70b08

Browse files
authored
chore: update .env.example, README, and package.json (#565)
1 parent 70917df commit ce70b08

File tree

4 files changed

+17
-2
lines changed

4 files changed

+17
-2
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# MagicBell User Auth
1+
# MagicBell User Auth API Keys retrieved here: https://app.magicbell.com/projects/_/settings/user-auth
22
MAGICBELL_API_KEY=
33
MAGICBELL_SECRET_KEY=
44

5-
# MagicBell Project Auth
5+
# MagicBell Project Auth Token retrieved here: https://app.magicbell.com/projects/_/settings/project-auth
66
MAGICBELL_PROJECT_TOKEN=

example/nextjs-webpush/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
</a>
55
<h1>MagicBell</h1>
66

7+
<a href="https://vercel.com/new/clone?repository-url=https%3A%2F%2Fgithub.com%2Fmagicbell%2Fmagicbell-js%2Ftree%2Fmain%2Fexample%2Fnextjs-webpush&env=MAGICBELL_API_KEY,MAGICBELL_SECRET_KEY,MAGICBELL_PROJECT_TOKEN&envDescription=The%20template%20requires%20MagicBell%20API%20and%20Secret%20key%20for%20user%20authentication%20and%20the%20MagicBell%20Project%20Token%20for%20sending%20notifications.&envLink=https%3A%2F%2Fwww.magicbell.com%2Fdocs%2Fapi%2Fauthentication"><img src="https://vercel.com/button" alt="Deploy with Vercel"/></a>
78
<a href="https://magicbell.com/docs"><img alt="Read the MagicBell Docs" src="https://img.shields.io/badge/Read%20the%20docs-23283B.svg?style=for-the-badge"></a>
89
<a href="https://magicbell.to/community"><img alt="Discuss on GitHub" src="https://img.shields.io/badge/Discuss%20on%20GitHub-black.svg?style=for-the-badge&logo=github&labelColor=000000&logoWidth=20"></a>
910

example/nextjs-webpush/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"name": "webpush-ios-template",
33
"version": "0.1.0",
44
"private": true,
5+
"packageManager": "[email protected]",
56
"scripts": {
67
"dev": "next dev --turbopack --experimental-https",
78
"build": "next build",
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
import Link from 'next/link';
2+
3+
export default function NotFound() {
4+
return (
5+
<div>
6+
<h2 className="text-2xl font-bold text-amber-500">Not Found</h2>
7+
<p>Could not find requested resource.</p>
8+
<Link className="block mt-6 hover:underline hover:underline-offset-4" href="/">
9+
Return Home
10+
</Link>
11+
</div>
12+
);
13+
}

0 commit comments

Comments
 (0)