Skip to content

Commit

Permalink
Merge pull request #8 from Nexters/refactor
Browse files Browse the repository at this point in the history
버그 픽스 및 일부 요구 사항 구현
  • Loading branch information
CODe5753 authored Nov 13, 2022
2 parents e970b40 + c3649a7 commit b0c1375
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 2 deletions.
6 changes: 6 additions & 0 deletions components/contact/contactBox.vue
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,12 @@ export default defineComponent({
text: "@Nexterspage",
link: "",
},
instagram: {
icon: require("~/assets/img/instagram.svg"),
iconText: "Instagram",
text: "https://www.instagram.com/team_nexters/",
link: "",
},
},
};
},
Expand Down
2 changes: 1 addition & 1 deletion components/footer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
</div>
</div>
<div class="sponsorGuideText">
본 페이지는 Naver D2 서버 지원으로 운영되고 있습니다. @NEXTERS 2021
본 페이지는 Naver Cloud Platform 서버 지원으로 운영되고 있습니다. @NEXTERS 2021
</div>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion content_generator/_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ def make_footer(data: GoogleSheetResult, sponsor: GoogleSheetResult) -> None:
"href": href,
"black": black,
"white": white,
"visible": visible,
"visible": _visible == "TRUE",
}
)

Expand Down
9 changes: 9 additions & 0 deletions plugins/vue-mq.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
import Vue from "vue";
import VueMq from "vue-mq";

const pageTitle = {
watch: {
vuePageTitle() {
document.title = `Nexters`;
},
},
};

Vue.mixin(pageTitle);
Vue.use(VueMq, {
breakpoints: {
mobile: 840,
Expand Down

0 comments on commit b0c1375

Please sign in to comment.