primer commit

This commit is contained in:
María
2025-07-25 14:00:54 +02:00
commit 5f094daada
13 changed files with 14052 additions and 0 deletions

24
.gitignore vendored Normal file
View File

@@ -0,0 +1,24 @@
# Nuxt dev/build outputs
.output
.data
.nuxt
.nitro
.cache
dist
# Node dependencies
node_modules
# Logs
logs
*.log
# Misc
.DS_Store
.fleet
.idea
# Local env files
.env
.env.*
!.env.example

5
app.vue Normal file
View File

@@ -0,0 +1,5 @@
<template>
<NuxtLayout>
<NuxtPage />
</NuxtLayout>
</template>

1
assets/css/main.css Normal file
View File

@@ -0,0 +1 @@
@import "tailwindcss";

Binary file not shown.

After

Width:  |  Height:  |  Size: 97 KiB

6
eslint.config.mjs Normal file
View File

@@ -0,0 +1,6 @@
// @ts-check
import withNuxt from './.nuxt/eslint.config.mjs'
export default withNuxt(
// Your custom configs here
)

11
layouts/default.vue Normal file
View File

@@ -0,0 +1,11 @@
<template>
<div>
<header></header>
<main>
<slot />
</main>
<footer></footer>
</div>
</template>

13
nuxt.config.ts Normal file
View File

@@ -0,0 +1,13 @@
// https://nuxt.com/docs/api/configuration/nuxt-config
import tailwindcss from "@tailwindcss/vite";
export default defineNuxtConfig({
compatibilityDate: '2025-07-15',
ssr: true,
devtools: { enabled: true },
modules: ['@nuxt/eslint'],
css: ['~/assets/css/main.css'],
vite: {
plugins: [tailwindcss()]
}
})

13939
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

21
package.json Normal file
View File

@@ -0,0 +1,21 @@
{
"name": "nuxt-app",
"private": true,
"type": "module",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare"
},
"dependencies": {
"@nuxt/eslint": "^1.7.1",
"@tailwindcss/vite": "^4.1.11",
"eslint": "^9.31.0",
"nuxt": "^3.17.7",
"tailwindcss": "^4.1.11",
"vue": "^3.5.17",
"vue-router": "^4.5.1"
}
}

27
pages/index.vue Normal file
View File

@@ -0,0 +1,27 @@
<template>
<div class="text-center max-w-xl mx-auto flex flex-col items-center justify-center h-screen">
<img
src="/assets/img/LOGO-KIT_horizontal_positivo_color.jpg"
alt="kit-ECO.SOCIAL logo"
class="mx-auto w-48 mb-12"
/>
<h1 class="text-2xl md:text-3xl font-medium leading-snug">
Estamos mejorando el Kit,<br/>
pronto estarán disponibles todas sus herramientas.
</h1>
<!-- Texto secundario -->
<p class="mt-6 text-base text-gray-700">
Síguenos en
<a
href="https://www.instagram.com/kitecosocial/"
class="text-[#5636d0] font-medium hover:underline"
target="_blank"
rel="noopener noreferrer"
>
@kit-eco.social
</a>
</p>
</div>
</template>

BIN
public/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

2
public/robots.txt Normal file
View File

@@ -0,0 +1,2 @@
User-Agent: *
Disallow:

3
server/tsconfig.json Normal file
View File

@@ -0,0 +1,3 @@
{
"extends": "../.nuxt/tsconfig.server.json"
}