File tree 3 files changed +17
-1
lines changed
3 files changed +17
-1
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ export const baseURL = () => {
2
2
const url =
3
3
process . env . NODE_ENV === "development"
4
4
? "http://localhost:3000"
5
- : "http://localhost :3000" ;
5
+ : "http://172.17.0.2 :3000" ;
6
6
7
7
// "http://ec2-3-137-182-223.us-east-2.compute.amazonaws.com/";
8
8
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ export default function Home() {
10
10
>
11
11
< div className = "z-10 max-w-5xl w-full items-center justify-between font-mono text-sm text-neutral-400 lg:flex" >
12
12
< Link href = "/chat" > Play Game</ Link >
13
+ < Link href = "/test" > Test Page</ Link >
13
14
</ div >
14
15
</ main >
15
16
) ;
Original file line number Diff line number Diff line change
1
+ import Link from "next/link" ;
2
+
3
+ export default function TestPage ( ) {
4
+ return (
5
+ < main
6
+ className = { `flex min-h-screen flex-col items-center justify-between bg-neutral-800 p-24` }
7
+ >
8
+ < div className = "z-10 max-w-5xl w-full items-center justify-between font-mono text-sm text-neutral-400 lg:flex" >
9
+ This is test page
10
+ < Link href = "/chat" > Play Game</ Link >
11
+ < Link href = "/" > Home</ Link >
12
+ </ div >
13
+ </ main >
14
+ ) ;
15
+ }
You can’t perform that action at this time.
0 commit comments