Skip to content

Commit 51ee37e

Browse files
committedFeb 4, 2022
revise some stuffs
1 parent 7706fe3 commit 51ee37e

File tree

5 files changed

+61
-18
lines changed

5 files changed

+61
-18
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# This file was auto-generated by the Firebase CLI
2+
# https://github.com/firebase/firebase-tools
3+
4+
name: Deploy to Firebase Hosting on merge
5+
'on':
6+
push:
7+
branches:
8+
- master
9+
jobs:
10+
build_and_deploy:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v2
14+
- uses: FirebaseExtended/action-hosting-deploy@v0
15+
with:
16+
repoToken: '${{ secrets.GITHUB_TOKEN }}'
17+
firebaseServiceAccount: '${{ secrets.FIREBASE_SERVICE_ACCOUNT_CODINGPOTATO_6DAF2 }}'
18+
channelId: live
19+
projectId: codingpotato-6daf2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# This file was auto-generated by the Firebase CLI
2+
# https://github.com/firebase/firebase-tools
3+
4+
name: Deploy to Firebase Hosting on PR
5+
'on': pull_request
6+
jobs:
7+
build_and_preview:
8+
if: '${{ github.event.pull_request.head.repo.full_name == github.repository }}'
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v2
12+
- uses: FirebaseExtended/action-hosting-deploy@v0
13+
with:
14+
repoToken: '${{ secrets.GITHUB_TOKEN }}'
15+
firebaseServiceAccount: '${{ secrets.FIREBASE_SERVICE_ACCOUNT_CODINGPOTATO_6DAF2 }}'
16+
projectId: codingpotato-6daf2
+10-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
1-
asset-manifest.json,1643651928748,f79437b71db7cccb1b7a852c59a91fcc62265e40ebcbdc4a58b78c13e67f501a
2-
index.html,1643651928748,f1853b315b449e0eaa5d776012a251c40e6bc66e30cde06a80a50c431467d13a
3-
static/js/main.ece93180.js.LICENSE.txt,1643651928758,e89fd939046bb07ab9cebe2ebe6329f3fc02b231cf40e303ec7e06b7a7e15f92
4-
robots.txt,1643651917403,391d14b3c2f8c9143a27a28c7399585142228d4d1bdbe2c87ac946de411fa9a2
5-
static/js/main.ece93180.js,1643651928758,7d2004d73b276a4b6c3ade15d395a1f93576aee1a3ff603f5d820759e116fcd9
6-
static/js/main.ece93180.js.map,1643651928758,310ca38dc0cae93bfee9f0aa2c7387da6b67b64682cbafa9b432b61b9c37a20d
1+
asset-manifest.json,1643960203471,dece06275a25fad2a2bd1261e0aec0a0c79615b8b44fc4d62dc635431a2776cb
2+
index.html,1643960203471,6f370a676acf0c8c4789eb51094d1afa7f15ef59d7d30bc11f507ce67004fa2c
3+
static/js/main.f9d371b9.js.LICENSE.txt,1643960203506,83c8e810b90e1980e45af5c64ac50f566cef8089ed3ec5d9e118043ee1dc7309
4+
static/css/main.55d9d2b4.css,1643960203506,8321bcfb4b11a1978a7f0237aa458d3be57f9d42a69103aa28244b6b60ec4c09
5+
static/css/main.55d9d2b4.css.map,1643960203500,78e240b59b96b622528fa20971e2fb5ede8439cac98f327ee7923c6da17dc29b
6+
robots.txt,1643960169833,391d14b3c2f8c9143a27a28c7399585142228d4d1bdbe2c87ac946de411fa9a2
7+
static/js/mapbox-gl-csp-worker.f3052f39.worker.js,1643960203505,223fe11223dbd67f8998ee84a82ce3435c596e991ae9a947c15ed5d0245d11ad
8+
static/js/main.f9d371b9.js,1643960203505,e76798beb2afcb92f1470a6e41f43dec68330a841b2b14265f9dab24fdc7d84a
9+
static/js/mapbox-gl-csp-worker.f3052f39.worker.js.map,1643960203500,28a3a151ad2b1b72bdcab7f4aeba0d65fb81dc069956faf6724d17c5b576cf83
10+
static/js/main.f9d371b9.js.map,1643960203505,8e8c5b49fa30af7f5e2bdcd55dbc83f421a4b0cfbd43b7ec78395c8d6731b50b

‎frontend/src/component/BoardCard/index.js

-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
import React from 'react';
22
import Card from '@mui/material/Card';
3-
import CardActions from '@mui/material/CardActions';
43
import CardContent from '@mui/material/CardContent';
5-
import Button from '@mui/material/Button';
64
import Typography from '@mui/material/Typography';
75

86
export default function BoardCard({post}) {

‎frontend/src/layouts/Appbar/index.js

+16-10
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ import Button from '@mui/material/Button';
1111
import useStyles from './styles';
1212

1313
const pages = [
14-
{primary: "전국 기온 지도", to: "/map"},
15-
{primary: "온열질환자 데이터", to: "/table"},
16-
{primary: "물자요청 게시판", to: "/board"}
14+
{ primary: "전국 기온 지도", to: "/map" },
15+
{ primary: "온열질환자 데이터", to: "/table" },
16+
{ primary: "물자요청 게시판", to: "/board" }
1717
];
1818

1919
const ResponsiveAppBar = () => {
@@ -23,14 +23,20 @@ const ResponsiveAppBar = () => {
2323
<AppBar position="absolute" >
2424
<Container maxWidth="xl">
2525
<Toolbar disableGutters>
26-
<Typography
27-
variant="h5"
28-
noWrap
29-
component="div"
30-
sx={{ mr: 2, display: { xs: 'none', md: 'flex' } }}
26+
<Button
27+
component={NavLink}
28+
to="/map"
3129
>
32-
ACCS
33-
</Typography>
30+
<Typography
31+
variant="h5"
32+
noWrap
33+
component="div"
34+
sx={{ mr: 2, display: { xs: 'none', md: 'flex' }, color: 'white' }}
35+
>
36+
ACCS
37+
</Typography>
38+
</Button>
39+
3440
<Box sx={{ flexGrow: 1, display: { xs: 'none', md: 'flex' } }}>
3541
{pages.map((page, i) => (
3642
<Button

0 commit comments

Comments
 (0)
Please sign in to comment.