Skip to content

Commit

Permalink
add main page html and some static files + fix : add license + quick fix
Browse files Browse the repository at this point in the history
  • Loading branch information
m4a1carbin4 committed Sep 29, 2023
1 parent 27fda61 commit 96d6d7c
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,16 @@ public class WebController {
* */
@GetMapping()
public String mainPage(){
return "/index";
return "index";
}

@GetMapping("/index")
public String indexPage(){
return "/index";
return "index";
}

@GetMapping("/contact")
public String contactPage(){
return "/contact";
return "contact";
}
}

0 comments on commit 96d6d7c

Please sign in to comment.