Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion next.config.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,17 @@
/** @type {import('next').NextConfig} */
const nextConfig = {};
const nextConfig = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "*.com",
},
{
protocol: "https",
hostname: "*.org",
},
],
},
};

export default nextConfig;
File renamed without changes
File renamed without changes
File renamed without changes
8 changes: 4 additions & 4 deletions src/app/(welcome)/welcome/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export default async function WelcomePage() {
<CardHeader className="justify-center bg-neutral-500 bg-opacity-10">
<Image
className="shadow-lg"
src="/sussed-new-project.png"
src="/images/sussed-new-project.PNG"
width={650}
height={650}
alt={"New Project"}
Expand All @@ -73,7 +73,7 @@ export default async function WelcomePage() {
<CardHeader className="justify-center bg-neutral-500 bg-opacity-10">
<Image
className="shadow-lg"
src="/sussed-new-campaign.png"
src="/images/sussed-new-campaign.PNG"
width={650}
height={650}
alt={"New Campaign"}
Expand All @@ -86,7 +86,7 @@ export default async function WelcomePage() {
<CardHeader className="justify-center bg-neutral-500 bg-opacity-10">
<Image
className="shadow-lg"
src="/sussed-new-invitation.png"
src="/images/sussed-new-invitation.PNG"
width={650}
height={650}
alt={"New Invitation"}
Expand Down Expand Up @@ -115,7 +115,7 @@ export default async function WelcomePage() {
<Card>
<CardHeader className="justify-center">
<Image
src="/sussed-sus-score.png"
src="/images/sussed-sus-score.PNG"
width={500}
height={500}
alt={"Sus Score"}
Expand Down
2 changes: 1 addition & 1 deletion src/middleware.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export const { auth: middleware } = NextAuth(authConfig);
// Read more: https://nextjs.org/docs/app/building-your-application/routing/middleware#matcher
export const config = {
matcher: [
"/((?!api|_next/static|_next/image|favicon.ico|projects|welcome|examples).*)",
"/((?!api|_next/static|_next/image|images|favicon.ico|projects|welcome|examples).*)",
"/projects/new",
],
};
Loading