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
23 changes: 11 additions & 12 deletions app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import type { Metadata } from "next";
import Script from "next/script";
import { GeistSans } from "geist/font/sans";
import { Bebas_Neue } from "next/font/google";
import "./globals.css";
Expand Down Expand Up @@ -67,20 +68,18 @@ export default function RootLayout({
dangerouslySetInnerHTML={{ __html: JSON.stringify(organizationSchema) }}
/>
{/* Google tag (gtag.js) */}
<script
async
<Script
src="https://www.googletagmanager.com/gtag/js?id=G-R92BBYP0F8"
strategy="afterInteractive"
/>
<script
dangerouslySetInnerHTML={{
__html: `
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-R92BBYP0F8');
`,
}}
/>
<Script id="gtag-init" strategy="afterInteractive">
{`
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-R92BBYP0F8');
`}
</Script>
</head>
<body
className={`${GeistSans.variable} ${bebas.variable} antialiased`}
Expand Down
4 changes: 2 additions & 2 deletions app/tokenomics/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ export default function TokenomicsPage() {
</div>

<p className="text-gray-300 text-sm mb-6">
We don't promise <span className="line-through text-gray-500">financial returns first</span>. We offer <span className="text-[#58B12F] font-semibold">verifiable impact infrastructure</span>. Funders can:
We don&apos;t promise <span className="line-through text-gray-500">financial returns first</span>. We offer <span className="text-[#58B12F] font-semibold">verifiable impact infrastructure</span>. Funders can:
</p>

<div className="grid sm:grid-cols-2 gap-3">
Expand Down Expand Up @@ -152,7 +152,7 @@ export default function TokenomicsPage() {
<path d="M13 7h8m0 0v8m0-8l-8 8-4-4-6 6" />
</svg>
</div>
<h3 className="text-xl font-semibold text-white">DMRV from a Funder's Perspective</h3>
<h3 className="text-xl font-semibold text-white">DMRV from a Funder&apos;s Perspective</h3>
</div>

{/* Flow Diagram */}
Expand Down
2 changes: 1 addition & 1 deletion components/GetStartedFlow/GetStartedFlow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ export default function GetStartedFlow() {
For those who care about the planet
</h2>
<p className="text-gray-400 text-sm md:text-base max-w-2xl mx-auto">
Environmental action deserves recognition. Here's how DeCleanup makes it happen.
Environmental action deserves recognition. Here&apos;s how DeCleanup makes it happen.
</p>
</div>

Expand Down