diff --git a/client/next.config.mjs b/client/next.config.mjs index cb47c98..0c8d921 100644 --- a/client/next.config.mjs +++ b/client/next.config.mjs @@ -6,6 +6,7 @@ const isWindowsDevContainer = () => /** @type {import('next').NextConfig} */ const nextConfig = { + devIndicators: false, reactStrictMode: true, // dumb fix for windows docker webpack: isWindowsDevContainer() diff --git a/client/src/pages/404.tsx b/client/src/pages/404.tsx new file mode 100644 index 0000000..14ffa0a --- /dev/null +++ b/client/src/pages/404.tsx @@ -0,0 +1,3 @@ +export default function Default() { + return

404 error. You've reached the wrong page

; +} diff --git a/client/src/pages/about-us.tsx b/client/src/pages/about-us.tsx new file mode 100644 index 0000000..e006925 --- /dev/null +++ b/client/src/pages/about-us.tsx @@ -0,0 +1,3 @@ +export default function Default() { + return

hello, welcome to the about-us page

; +} diff --git a/client/src/pages/dog-parks.tsx b/client/src/pages/dog-parks.tsx new file mode 100644 index 0000000..4b586cc --- /dev/null +++ b/client/src/pages/dog-parks.tsx @@ -0,0 +1,3 @@ +export default function Default() { + return

hello, welcome to the dog-parks page

; +} diff --git a/client/src/pages/health-records.tsx b/client/src/pages/health-records.tsx new file mode 100644 index 0000000..9308f79 --- /dev/null +++ b/client/src/pages/health-records.tsx @@ -0,0 +1,3 @@ +export default function Default() { + return

hello, welcome to the health-records page

; +} diff --git a/client/src/pages/home.tsx b/client/src/pages/home.tsx new file mode 100644 index 0000000..412b66a --- /dev/null +++ b/client/src/pages/home.tsx @@ -0,0 +1,3 @@ +export default function Default() { + return

hello, welcome to the home page

; +} diff --git a/client/src/pages/landing.tsx b/client/src/pages/landing.tsx new file mode 100644 index 0000000..f3b3462 --- /dev/null +++ b/client/src/pages/landing.tsx @@ -0,0 +1,3 @@ +export default function Default() { + return

hello, welcome to the landing page

; +} diff --git a/client/src/pages/pet.tsx b/client/src/pages/pet.tsx new file mode 100644 index 0000000..ddd68da --- /dev/null +++ b/client/src/pages/pet.tsx @@ -0,0 +1,3 @@ +export default function Default() { + return

hello, welcome to the pet page

; +} diff --git a/client/src/pages/profile.tsx b/client/src/pages/profile.tsx new file mode 100644 index 0000000..7a75048 --- /dev/null +++ b/client/src/pages/profile.tsx @@ -0,0 +1,3 @@ +export default function Default() { + return

hello, welcome to the profile page

; +} diff --git a/client/src/pages/registration.tsx b/client/src/pages/registration.tsx new file mode 100644 index 0000000..481a20f --- /dev/null +++ b/client/src/pages/registration.tsx @@ -0,0 +1,3 @@ +export default function Default() { + return

hello, welcome to the registration page

; +} diff --git a/client/src/pages/shop.tsx b/client/src/pages/shop.tsx new file mode 100644 index 0000000..e7f9c06 --- /dev/null +++ b/client/src/pages/shop.tsx @@ -0,0 +1,3 @@ +export default function Default() { + return

hello, welcome to the shop page

; +} diff --git a/client/src/pages/tasks.tsx b/client/src/pages/tasks.tsx new file mode 100644 index 0000000..5bc0fea --- /dev/null +++ b/client/src/pages/tasks.tsx @@ -0,0 +1,3 @@ +export default function Default() { + return

hello, welcome to the tasks page

; +} diff --git a/client/src/pages/vets.tsx b/client/src/pages/vets.tsx new file mode 100644 index 0000000..bca576c --- /dev/null +++ b/client/src/pages/vets.tsx @@ -0,0 +1,3 @@ +export default function Default() { + return

hello, welcome to the vets page

; +}