diff --git a/.env.example b/.env.example deleted file mode 100644 index 1cf289b..0000000 --- a/.env.example +++ /dev/null @@ -1,24 +0,0 @@ -# Clone this file into a .env file and populate it with your secrets to start developing - -# Will be used by Prisma to connect to database https://www.prisma.io/docs/reference/database-reference/connection-urls#env -# Example: "postgresql://postgres:password@localhost:5432/peoplez" -DATABASE_URL="YOUR_POSTGRES_URL_HERE" - -# Next Auth -NEXTAUTH_URL="http://localhost:3000" -NEXTAUTH_SECRET="secret" - -# Stripe keys -STRIPE_PUBLISHABLE_KEY= -STRIPE_PRIVATE_KEY= - -# Email sending -EMAIL_SERVER_USER= -EMAIL_SERVER_PASSWORD= -EMAIL_SERVER_HOST= -EMAIL_SERVER_PORT= -EMAIL_FROM= -EMAIL_SECURE= - -# Dev -DEVELOPER=true \ No newline at end of file diff --git a/src/app/not-found.tsx b/src/app/not-found.tsx new file mode 100644 index 0000000..986eea9 --- /dev/null +++ b/src/app/not-found.tsx @@ -0,0 +1,11 @@ +import Link from 'next/link' + +export default function NotFound() { + return ( +
+

Not Found this page!

+

Could not find requested resource

+ Return Home +
+ ) +} \ No newline at end of file