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
1 change: 1 addition & 0 deletions client/next.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ const isWindowsDevContainer = () =>

/** @type {import('next').NextConfig} */
const nextConfig = {
devIndicators: false,
reactStrictMode: true,
// dumb fix for windows docker
webpack: isWindowsDevContainer()
Expand Down
3 changes: 3 additions & 0 deletions client/src/pages/404.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export default function Default() {
return <h1>404 error. You&apos;ve reached the wrong page</h1>;
}
3 changes: 3 additions & 0 deletions client/src/pages/about-us.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export default function Default() {
return <h1>hello, welcome to the about-us page</h1>;
}
3 changes: 3 additions & 0 deletions client/src/pages/dog-parks.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export default function Default() {
return <h1>hello, welcome to the dog-parks page</h1>;
}
3 changes: 3 additions & 0 deletions client/src/pages/health-records.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export default function Default() {
return <h1>hello, welcome to the health-records page</h1>;
}
3 changes: 3 additions & 0 deletions client/src/pages/home.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export default function Default() {
return <h1>hello, welcome to the home page</h1>;
}
3 changes: 3 additions & 0 deletions client/src/pages/landing.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export default function Default() {
return <h1>hello, welcome to the landing page</h1>;
}
3 changes: 3 additions & 0 deletions client/src/pages/pet.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export default function Default() {
return <h1>hello, welcome to the pet page</h1>;
}
3 changes: 3 additions & 0 deletions client/src/pages/profile.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export default function Default() {
return <h1>hello, welcome to the profile page</h1>;
}
3 changes: 3 additions & 0 deletions client/src/pages/registration.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export default function Default() {
return <h1>hello, welcome to the registration page</h1>;
}
3 changes: 3 additions & 0 deletions client/src/pages/shop.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export default function Default() {
return <h1>hello, welcome to the shop page</h1>;
}
3 changes: 3 additions & 0 deletions client/src/pages/tasks.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export default function Default() {
return <h1>hello, welcome to the tasks page</h1>;
}
3 changes: 3 additions & 0 deletions client/src/pages/vets.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export default function Default() {
return <h1>hello, welcome to the vets page</h1>;
}
Loading