Skip to content

Commit 455e37b

Browse files
irohairoha
authored andcommitted
making new client pages (404, about-us, home)
1 parent 797c527 commit 455e37b

4 files changed

Lines changed: 10 additions & 0 deletions

File tree

client/next.config.mjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ const isWindowsDevContainer = () =>
66

77
/** @type {import('next').NextConfig} */
88
const nextConfig = {
9+
devIndicators: false,
910
reactStrictMode: true,
1011
// dumb fix for windows docker
1112
webpack: isWindowsDevContainer()

client/src/pages/404.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
export default function Default() {
2+
return <h1>404 error. You&apos;ve reached the wrong page</h1>;
3+
}

client/src/pages/about-us.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
export default function Default() {
2+
return <h1>hello, welcome to the about-us page</h1>;
3+
}

client/src/pages/home.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
export default function Default() {
2+
return <h1>hello, welcome to the home page</h1>;
3+
}

0 commit comments

Comments
 (0)