Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[#11] Google Analytics 적용 #15

Merged
merged 3 commits into from
Jan 10, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 11 additions & 4 deletions apps/client/index.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
<!doctype html>
<html lang="ko">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-SMXGZQRD0S"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'G-SMXGZQRD0S');
</script>
<!-- 기본 meta 태그 및 link -->
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/images/boolock_logo.png" />
Expand All @@ -14,10 +24,7 @@
<meta name="author" content="부스트캠프 9기 Web31팀" />
<!-- Open Graph -->
<meta property="og:title" content="BooLock" />
<meta
property="og:description"
content="쉽게 배우는 블록 코딩"
/>
<meta property="og:description" content="쉽게 배우는 블록 코딩" />
<meta property="og:url" content="https://boolock.site/" />
<meta property="og:image" content="/images/boolock_thumnail.png" />
<meta property="og:image:alt" content="블록코딩 플랫폼 BooLock의 썸네일" />
Expand Down
Loading