Skip to content

Commit 98d82d9

Browse files
authored
Merge pull request #12 from codersforcauses/janelle-frontend-components
Janelle frontend components
2 parents 918d7af + 97f1225 commit 98d82d9

13 files changed

Lines changed: 37 additions & 0 deletions

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/dog-parks.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 dog-parks page</h1>;
3+
}
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 health-records 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+
}

client/src/pages/landing.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 landing page</h1>;
3+
}

client/src/pages/pet.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 pet page</h1>;
3+
}

client/src/pages/profile.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 profile page</h1>;
3+
}

client/src/pages/registration.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 registration page</h1>;
3+
}

0 commit comments

Comments
 (0)