finalisation home page

This commit is contained in:
2026-02-06 20:20:01 +01:00
parent 91c1b03a2f
commit d9ac2b4cc5
45 changed files with 1892 additions and 148 deletions

104
README.md
View File

@@ -1,32 +1,86 @@
# Stack
- NUXT
- NUXT 4
# Dev du site en local
# NUXT
Démarrer NUXT
- npm run dev
- URL : http://localhost:3000/
# Site de développement
## URL
https://2025.orchestre-ile.com/
## package.json du serveur
Fichier /var/www/wondif_vue$ more package.json
{
"name": "wondif_vue",
"type": "module",
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"start": "node .output/server/index.mjs",
"postinstall": "nuxt prepare"
},
"dependencies": {
"@nuxt/image": "^1.11.0",
"nuxt": "^4.1.3",
"vue": "^3.5.22",
"vue-router": "^4.5.1"
},
"devDependencies": {
"sass": "^1.93.2"
# TODO
## Serveur web
Créer un vrai /security.txt (ou /.well-known/security.txt) au lieu de le renvoyer en 404.
dans le fichier de conf NGINX /etc/nginx/sites-available$ sudo nano wondif_2025
# Fichier standard optionnel (si tu ne le fournis pas)
location = /security.txt { return 404; }
# Dev
## MEDIAS QUERIES
@media (max-width: 599px) {
. {
xxx
}
}
}
@media (min-width: 600px) {
. {
xxx
}
}
@media (min-width: 700px) {
. {
xxx
}
}
@media (min-width: 800px) {
. {
xxx
}
}
@media (min-width: 900px) {
. {
xxx
}
}
@media (min-width: 1000px) {
. {
xxx
}
}
@media (min-width: 1100px) {
. {
xxx
}
}
@media (min-width: 1200px) {
. {
xxx
}
}
@media (min-width: 1300px) {
. {
xxx
}
}
@media (min-width: 1400px) {
. {
xxx
}
}
padded: { type: Boolean, default: true }, // padding vertical
&--padded {
padding-top: 30px;
padding-bottom: 50px;
}