-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from Blackraven93/develop
v1에 대한 마지막 업데이트 입니다. 메타테그 및 구조 부분에 대해 리팩터링을 진행했습니다.
- Loading branch information
Showing
34 changed files
with
8,170 additions
and
5,827 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -79,4 +79,8 @@ package.tgz | |
|
||
.idea | ||
|
||
coverage | ||
coverage | ||
|
||
.env | ||
|
||
*.env |
Binary file renamed
BIN
+202 KB
...ejs3-npm-7.19.1-b2dd8d7c1e-38a1e8fcd2.zip → ...ejs3-npm-7.19.4-0547036932-3418534964.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file renamed
BIN
+136 KB
...intrc-npm-1.3.2-fd8de37609-2074dca47d.zip → ...intrc-npm-1.3.3-9e3a462140-f03e9d6727.zip
Binary file not shown.
Binary file added
BIN
+14.1 KB
.yarn/cache/@typescript-eslint-parser-npm-5.40.0-36cbbd9048-a8d02950dd.zip
Binary file not shown.
Binary file added
BIN
+306 KB
.yarn/cache/@typescript-eslint-scope-manager-npm-5.40.0-86f5f7a2d0-48dfb2f1a7.zip
Binary file not shown.
Binary file added
BIN
+41.8 KB
.yarn/cache/@typescript-eslint-types-npm-5.40.0-032e3ccf3b-892ff16217.zip
Binary file not shown.
Binary file added
BIN
+153 KB
.yarn/cache/@typescript-eslint-typescript-estree-npm-5.40.0-6f9c0e3909-8b67b8c427.zip
Binary file not shown.
Binary file added
BIN
+10.6 KB
.yarn/cache/@typescript-eslint-visitor-keys-npm-5.40.0-0b6573a5a2-a11787f7e6.zip
Binary file not shown.
Binary file not shown.
Binary file renamed
BIN
+753 KB
...ract-npm-1.20.3-716a6119bf-225f24966e.zip → ...ract-npm-1.20.4-543318afab-89297cc785.zip
Binary file not shown.
Binary file renamed
BIN
+221 KB
...eact-npm-7.31.8-54babab916-0683e2a624.zip → ...act-npm-7.31.10-d43fb4c6e9-f013669c29.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+9.42 KB
.yarn/cache/regenerator-runtime-npm-0.13.10-57e3c1406b-09893f5a9e.zip
Binary file not shown.
Binary file removed
BIN
-9.36 KB
.yarn/cache/regenerator-runtime-npm-0.13.9-6d02340eec-65ed455fe5.zip
Binary file not shown.
Binary file renamed
BIN
+37.1 KB
...emver-npm-7.3.7-3bfe704194-2fa3e87756.zip → ...emver-npm-7.3.8-25a996cb4f-ba9c7cbbf2.zip
Binary file not shown.
Binary file not shown.
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,13 @@ | ||
export const pageview = (url) => { | ||
window.gtag("config", process.env.NEXT_PUBLIC_GOOGLE_ANALYTICS, { | ||
page_path: url, | ||
}); | ||
}; | ||
|
||
export const event = ({ action, category, label, value }) => { | ||
window.gtag("event", action, { | ||
event_category: category, | ||
event_label: label, | ||
value, | ||
}); | ||
}; |
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 HeadMeta from "./components/HeadMeta"; | ||
import styles from "../styles/modules/error.module.css"; | ||
|
||
const Custom404 = () => { | ||
return ( | ||
<div className={styles.error}> | ||
<HeadMeta /> | ||
<h1>404 | 페이지가 없습니다 😂</h1> | ||
</div> | ||
); | ||
}; | ||
|
||
Error.getInitialProps = ({ res, err }) => { | ||
const statusCode = res ? res.statusCode : err ? err.statusCode : 404; | ||
return { statusCode }; | ||
}; | ||
|
||
export default Custom404; |
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 |
---|---|---|
@@ -0,0 +1,122 @@ | ||
import Head from "next/head"; | ||
|
||
const HeadMeta = () => { | ||
return ( | ||
<Head> | ||
<meta http-equiv="Title" content="SyncSwift 2022" /> | ||
<meta name="og:title" content="SyncSwift 2022" /> | ||
<meta property="twitter:title" content="SyncSwift 2022" /> | ||
<meta name="og:type" content="website" /> | ||
<meta name="og:url" content="https://www.asyncswift.com/" /> | ||
<meta name="og:image" content="/favicons/apple-icon.png" /> | ||
<meta property="twitter:image" content="/favicons/apple-icon.png" /> | ||
<meta property="twitter:card" content="/favicons/apple-icon.png" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<meta charset="UTF - 8" /> | ||
<meta http-equiv="Author" content="AsyncSwift Organizar" /> | ||
<meta http-equiv="publisher" content="AsyncSwift" /> | ||
<meta http-equiv="Reply-To" content="asyncswift@gmail.com" /> | ||
<meta http-equiv="Email" content="asyncswift@gmail.com" /> | ||
<meta http-equiv="Distribution" content="Raven" /> | ||
<meta http-equiv="Copyright" content="AsyncSwift" /> | ||
<meta http-equiv="Build" content="Wed, 05 Oct 2022 20:00:00" /> | ||
<meta name="og:site_name" content="SyncSwift 2022" /> | ||
<meta | ||
name="description" | ||
content="Apple 생태계 속에서 헤엄치는 사람들의 커뮤니티. AsyncSwift 입니다." | ||
/> | ||
<meta | ||
name="og:description" | ||
content="Apple 생태계 속에서 헤엄치는 사람들의 커뮤니티. AsyncSwift 입니다." | ||
/> | ||
<meta | ||
property="twitter:description" | ||
content="Apple 생태계 속에서 헤엄치는 사람들의 커뮤니티. AsyncSwift 입니다." | ||
/> | ||
<meta http-equiv="Subject" content="Swift Conference" /> | ||
<meta name="Keywords" content="AsyncSwift" /> | ||
<meta name="keywords" content="Swift Conference" /> | ||
<meta name="keywords" content="SyncSwift 2022" /> | ||
<link rel="icon" href="/favicons/favicon.ico" /> | ||
<link | ||
rel="apple-touch-icon" | ||
sizes="57x57" | ||
href="/favicons/apple-icon-57x57.png" | ||
/> | ||
<link | ||
rel="apple-touch-icon" | ||
sizes="60x60" | ||
href="/favicons/apple-icon-60x60.png" | ||
/> | ||
<link | ||
rel="apple-touch-icon" | ||
sizes="72x72" | ||
href="/favicons/apple-icon-72x72.png" | ||
/> | ||
<link | ||
rel="apple-touch-icon" | ||
sizes="76x76" | ||
href="/favicons/apple-icon-76x76.png" | ||
/> | ||
<link | ||
rel="apple-touch-icon" | ||
sizes="114x114" | ||
href="/favicons/apple-icon-114x114.png" | ||
/> | ||
<link | ||
rel="apple-touch-icon" | ||
sizes="120x120" | ||
href="/favicons/apple-icon-120x120.png" | ||
/> | ||
<link | ||
rel="apple-touch-icon" | ||
sizes="144x144" | ||
href="/favicons/apple-icon-144x144.png" | ||
/> | ||
<link | ||
rel="apple-touch-icon" | ||
sizes="152x152" | ||
href="/favicons/apple-icon-152x152.png" | ||
/> | ||
<link | ||
rel="apple-touch-icon" | ||
sizes="180x180" | ||
href="/favicons/apple-icon-180x180.png" | ||
/> | ||
<link | ||
rel="icon" | ||
type="image/png" | ||
sizes="192x192" | ||
href="/favicons/android-icon-192x192.png" | ||
/> | ||
<link | ||
rel="icon" | ||
type="image/png" | ||
sizes="32x32" | ||
href="/favicons/favicon-32x32.png" | ||
/> | ||
<link | ||
rel="icon" | ||
type="image/png" | ||
sizes="96x96" | ||
href="/favicons/favicon-96x96.png" | ||
/> | ||
<link | ||
rel="icon" | ||
type="image/png" | ||
sizes="16x16" | ||
href="/favicons/favicon-16x16.png" | ||
/> | ||
<link rel="manifest" href="/favicons/manifest.json" /> | ||
<meta name="msapplication-TileColor" content="#ffffff" /> | ||
<meta | ||
name="msapplication-TileImage" | ||
content="/favicons/ms-icon-144x144.png" | ||
/> | ||
<meta name="theme-color" content="#ffffff" /> | ||
<title>SyncSwift 2022</title> | ||
</Head> | ||
); | ||
}; | ||
|
||
export default HeadMeta; |
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
Oops, something went wrong.