feat: Next.js initialization with premium vanilla CSS layout

This commit is contained in:
Carlos (Almeira)
2026-03-13 00:15:32 -05:00
parent 2390035295
commit ffe9674e8d
10 changed files with 6328 additions and 1 deletions

24
package.json Normal file
View File

@@ -0,0 +1,24 @@
{
"name": "almeira-web",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint"
},
"dependencies": {
"next": "16.1.6",
"react": "19.2.3",
"react-dom": "19.2.3"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"typescript": "^5"
}
}