Initial commit from Create Next App

This commit is contained in:
Keroosha 2023-06-13 18:18:53 +03:00
commit 4f2bc74ed2
14 changed files with 1775 additions and 0 deletions

23
package.json Normal file
View file

@ -0,0 +1,23 @@
{
"name": "keroosha-landing",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@types/node": "20.3.1",
"@types/react": "18.2.12",
"@types/react-dom": "18.2.5",
"autoprefixer": "10.4.14",
"next": "13.4.5",
"postcss": "8.4.24",
"react": "18.2.0",
"react-dom": "18.2.0",
"tailwindcss": "3.3.2",
"typescript": "5.1.3"
}
}