-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9f6bf89
commit ae2373b
Showing
16 changed files
with
9,624 additions
and
93 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import React from 'react'; | ||
import { MainContainer } from '../../components/template/main-container'; | ||
import './index.scss'; | ||
|
||
interface SearchProps { | ||
pageId?: string | undefined; | ||
} | ||
const Search: React.FC<SearchProps> = ({ pageId }) => { | ||
return ( | ||
<MainContainer> | ||
<div className="p-search flex flex-row justify-center" id={pageId}> | ||
<h1 className='text-5xl mt-10'>Search page </h1> | ||
</div> | ||
</MainContainer> | ||
); | ||
}; | ||
|
||
export default Search; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import React from 'react'; | ||
import { MainContainer } from '../../components/template/main-container'; | ||
|
||
interface SignInProps { | ||
pageId?: string | undefined; | ||
} | ||
const SignIn: React.FC<SignInProps> = ({ pageId }) => { | ||
return ( | ||
<MainContainer> | ||
<div className="p-signin flex flex-row justify-center" id={pageId}> | ||
<h1 className='text-5xl mt-10'>SignIn page </h1> | ||
</div> | ||
</MainContainer> | ||
); | ||
}; | ||
|
||
export default SignIn; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1 @@ | ||
package-lock.json | ||
node_modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
# https://hub.docker.com/_/nginx | ||
FROM nginx | ||
# A directory where the result of executing envsubst is output | ||
# ./default.conf.template will be output with the filename /etc/nginx/conf.d/default.conf | ||
COPY ./default.conf /etc/nginx/conf.d/default.conf |
Oops, something went wrong.