kell valami analytics naa

This commit is contained in:
skidoodle 2023-09-25 23:08:12 +02:00
parent 3eb48a80c1
commit 0baf56fbf8
3 changed files with 731 additions and 2256 deletions

View file

@ -14,6 +14,7 @@
"@types/node": "20.6.1", "@types/node": "20.6.1",
"@types/react": "18.2.21", "@types/react": "18.2.21",
"@types/react-dom": "18.2.7", "@types/react-dom": "18.2.7",
"@vercel/analytics": "^1.0.2",
"autoprefixer": "10.4.15", "autoprefixer": "10.4.15",
"eslint": "8.49.0", "eslint": "8.49.0",
"eslint-config-next": "13.4.19", "eslint-config-next": "13.4.19",

2984
pnpm-lock.yaml generated

File diff suppressed because it is too large Load diff

View file

@ -1,6 +1,7 @@
import { Inter } from 'next/font/google' import { Inter } from 'next/font/google'
import { AppProps } from 'next/app' import { AppProps } from 'next/app'
import { NextUIProvider } from '@nextui-org/react' import { NextUIProvider } from '@nextui-org/react'
import { Analytics } from '@vercel/analytics/react'
import { ThemeProvider as NextThemesProvider } from 'next-themes' import { ThemeProvider as NextThemesProvider } from 'next-themes'
import Head from 'next/head' import Head from 'next/head'
import '@/styles/globals.css' import '@/styles/globals.css'
@ -13,6 +14,7 @@ const inter = Inter({
export default function App({ Component, pageProps }: AppProps) { export default function App({ Component, pageProps }: AppProps) {
return ( return (
<> <>
<Analytics />
<Head> <Head>
<title>Érettségi kereső</title> <title>Érettségi kereső</title>
</Head> </Head>