Skip to content

Commit

Permalink
chore: deps (#10)
Browse files Browse the repository at this point in the history
Co-authored-by: nikkeyl <[email protected]>
  • Loading branch information
github-actions[bot] and nikkeyl authored Dec 27, 2024
1 parent 0cf83d6 commit fea6048
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 9 deletions.
2 changes: 0 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@
"dev": "next dev"
},
"dependencies": {
"@vercel/analytics": "^1.4.1",
"@vercel/speed-insights": "^1.1.0",
"clsx": "^2.1.1",
"embla-carousel-react": "^8.5.1",
"next": "^15.1.0",
Expand Down
8 changes: 1 addition & 7 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,19 +1,13 @@
import '@styles/app.scss';

import { Analytics } from '@vercel/analytics/react';
import { SpeedInsights } from '@vercel/speed-insights/next';
import type { PropsWithChildren } from 'react';

const RootLayout = (properties: PropsWithChildren) => {
const { children } = properties;

return (
<html lang='en'>
<body>
{children}
<Analytics />
<SpeedInsights />
</body>
<body>{children}</body>
</html>
);
};
Expand Down

0 comments on commit fea6048

Please sign in to comment.