mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2026-06-05 20:15:31 -04:00
12 lines
271 B
TypeScript
12 lines
271 B
TypeScript
import { Analytics as VercelAnalytics } from "@vercel/analytics/next";
|
|
import { SpeedInsights as VercelSpeedInsights } from "@vercel/speed-insights/next";
|
|
|
|
const Analytics = () => (
|
|
<>
|
|
<VercelAnalytics />
|
|
<VercelSpeedInsights />
|
|
</>
|
|
);
|
|
|
|
export { Analytics };
|