this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

analytics

alice fa026c8c 6a8b344b

+8 -2
+7 -2
src/app/layout.tsx
··· 3 3 import { Inter, Libre_Baskerville } from "next/font/google"; 4 4 import localFont from "next/font/local"; 5 5 import { cx } from "#/lib/cx"; 6 - 7 6 import "./globals.css"; 8 7 9 - import { DESCRIPTION, HOSTNAME } from "#/lib/config"; 8 + import { CLOUDFLARE_BEACON_TOKEN, DESCRIPTION, HOSTNAME } from "#/lib/config"; 9 + import Script from "next/script"; 10 10 11 11 const sans = Inter({ 12 12 variable: "--font-inter", ··· 63 63 > 64 64 {children} 65 65 </body> 66 + <Script async defer src="https://scripts.simpleanalyticscdn.com/latest.js"></Script> 67 + <Script 68 + src="https://static.cloudflareinsights.com/beacon.min.js" 69 + data-cf-beacon={`{"token": "${CLOUDFLARE_BEACON_TOKEN}"}`} 70 + ></Script> 66 71 </html> 67 72 ); 68 73 }
+1
src/lib/config.ts
··· 6 6 export const DESCRIPTION = 7 7 "this is a blog. there are many like it, but this one is mine."; 8 8 export const GITHUB_USERNAME = "aliceisjustplaying"; 9 + export const CLOUDFLARE_BEACON_TOKEN = "80339998c1034152803ce2df95a47a56";