mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-06-27 18:05:41 -04:00
14 lines
299 B
TypeScript
14 lines
299 B
TypeScript
import { Analytics as VercelAnalytics } from "@vercel/analytics/next";
|
|
import { SpeedInsights as VercelSpeedInsights } from "@vercel/speed-insights/next";
|
|
|
|
const Analytics = () => {
|
|
return (
|
|
<>
|
|
<VercelAnalytics />
|
|
<VercelSpeedInsights />
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default Analytics;
|