this repo has no description
0
fork

Configure Feed

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

add analytics

+25 -1
+1
package.json
··· 11 11 "dependencies": { 12 12 "@atcute/client": "^2.0.3", 13 13 "@atcute/whitewind": "^1.0.2", 14 + "@vercel/analytics": "^1.3.1", 14 15 "bright": "^0.8.5", 15 16 "lucide-react": "^0.453.0", 16 17 "next": "15.0.1",
+21
pnpm-lock.yaml
··· 14 14 '@atcute/whitewind': 15 15 specifier: ^1.0.2 16 16 version: 1.0.2(@atcute/client@2.0.3) 17 + '@vercel/analytics': 18 + specifier: ^1.3.1 19 + version: 1.3.1(next@15.0.1(@babel/core@7.25.9)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1) 17 20 bright: 18 21 specifier: ^0.8.5 19 22 version: 0.8.5(react@18.3.1) ··· 547 550 548 551 '@ungap/structured-clone@1.2.0': 549 552 resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==} 553 + 554 + '@vercel/analytics@1.3.1': 555 + resolution: {integrity: sha512-xhSlYgAuJ6Q4WQGkzYTLmXwhYl39sWjoMA3nHxfkvG+WdBT25c563a7QhwwKivEOZtPJXifYHR1m2ihoisbWyA==} 556 + peerDependencies: 557 + next: '>= 13' 558 + react: ^18 || ^19 559 + peerDependenciesMeta: 560 + next: 561 + optional: true 562 + react: 563 + optional: true 550 564 551 565 acorn-jsx@5.3.2: 552 566 resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} ··· 2637 2651 eslint-visitor-keys: 3.4.3 2638 2652 2639 2653 '@ungap/structured-clone@1.2.0': {} 2654 + 2655 + '@vercel/analytics@1.3.1(next@15.0.1(@babel/core@7.25.9)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)': 2656 + dependencies: 2657 + server-only: 0.0.1 2658 + optionalDependencies: 2659 + next: 15.0.1(@babel/core@7.25.9)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 2660 + react: 18.3.1 2640 2661 2641 2662 acorn-jsx@5.3.2(acorn@8.13.0): 2642 2663 dependencies:
+3 -1
src/app/layout.tsx
··· 1 + import { Analytics } from "@vercel/analytics/react"; 1 2 import type { Metadata } from "next"; 2 3 import { Inter, Libre_Baskerville } from "next/font/google"; 3 4 import localFont from "next/font/local"; ··· 9 10 const sans = Inter({ 10 11 variable: "--font-inter", 11 12 subsets: ["latin"], 12 - weight: ["400","500", "700"], 13 + weight: ["400", "500", "700"], 13 14 }); 14 15 15 16 const serif = Libre_Baskerville({ ··· 46 47 )} 47 48 > 48 49 {children} 50 + <Analytics /> 49 51 </body> 50 52 </html> 51 53 );