feat: base of the project with npm dependencies

This commit is contained in:
florian.llimos 2025-02-19 09:26:41 +01:00
parent 2d84731817
commit 068e160c79
5 changed files with 12561 additions and 0 deletions

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
node_modules/
package-lock.json
dist/

12
index.html Normal file
View File

@ -0,0 +1,12 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Siahbva</title>
<link rel="icon" href="media/logo-couleur-2.svg">
<link rel="stylesheet" href="style.css">
</head>
<body>
</body>
</html>

11
package.json Normal file
View File

@ -0,0 +1,11 @@
{
"scripts": {
"build-css": "lessc style.less dist/style.css"
},
"dependencies": {
"uikit": "^3.16.28"
},
"devDependencies": {
"less": "^4.2.2"
}
}

12534
style.css Normal file

File diff suppressed because it is too large Load Diff

1
style.less Normal file
View File

@ -0,0 +1 @@
@import "node_modules/uikit/src/less/uikit.less";