Skip to content

Instantly share code, notes, and snippets.

View royce-mathew's full-sized avatar
💫
Enjoying Life

Royce Mathew royce-mathew

💫
Enjoying Life
View GitHub Profile
@royce-mathew
royce-mathew / words.txt
Created February 13, 2025 21:05
Possible 5 Letter Words for Wordle
scowl
wager
tying
swarm
shady
lying
heady
fluke
bland
bison
@royce-mathew
royce-mathew / possible-words.txt
Last active February 13, 2025 21:05
All Possible 5 Letter Words
noles
melas
waist
ohias
mummy
shakt
plume
azurn
aiyee
rewth
import { auth } from "@/auth"
export default auth((req) => {
if (!req.auth) {
const url = req.url.replace(req.nextUrl.pathname, "/login")
return Response.redirect(url)
}
})