Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions .env
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ EVENT_ID=inctf
NEXT_PUBLIC_EVENT_ID=inctf
NEXT_PUBLIC_GA_ID=G-KH5K55VLK7
NEXT_PUBLIC_WEB3FORMS_ACCESS_KEY=307d219e-605a-4a1a-bffc-4207b30a2fa0
NEXT_PUBLIC_GTM_ID=GTM-T2WDBL8H
23 changes: 23 additions & 0 deletions app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,30 @@ export default function RootLayout({ children }: { children: ReactNode }) {

return (
<html lang="en">
<head>
<Script
id="gtm-script"
strategy="afterInteractive"
dangerouslySetInnerHTML={{
__html: `(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','${process.env.NEXT_PUBLIC_GTM_ID}');`
}}
/>
</head>
<body>
<noscript>
<iframe
src="https://www.googletagmanager.com/ns.html?id=GTM-T2WDBL8H"
height="0"
width="0"
style={{ display: 'none', visibility: 'hidden' }}
/>
</noscript>


{children}

{/* Google Analytics */}
Expand Down
2 changes: 1 addition & 1 deletion src/components/landing/OperationTimeline.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const timelineEvents = [
coords: "01.04"
},
{
date: "MAY 23 / 24",
date: "June (TBD)",
title: "Qualifiers",
description: "Online jeopardy round",
icon: <Target className="w-5 h-5" />,
Expand Down
Loading