From 97314df9aaffed9ce0322b7be2f1df00d01bb26c Mon Sep 17 00:00:00 2001 From: Colab Simplon <> Date: Thu, 11 Apr 2024 14:09:44 +0200 Subject: [PATCH] Initial commit --- .gitignore | 5 + .parcelrc | 34 ++++ .postcssrc | 5 + LICENSE | 9 + README.md | 3 + package.json | 33 ++++ src/assets/fonts/viga/400.css | 19 ++ src/assets/fonts/viga/CHANGELOG.md | 2 + src/assets/fonts/viga/LICENSE | 93 +++++++++ src/assets/fonts/viga/README.md | 47 +++++ .../viga/files/viga-latin-400-normal.woff | Bin 0 -> 11428 bytes .../viga/files/viga-latin-400-normal.woff2 | Bin 0 -> 8304 bytes .../viga/files/viga-latin-ext-400-normal.woff | Bin 0 -> 2848 bytes .../files/viga-latin-ext-400-normal.woff2 | Bin 0 -> 2096 bytes src/assets/fonts/viga/index.css | 19 ++ src/assets/fonts/viga/latin-400.css | 8 + src/assets/fonts/viga/latin-ext-400.css | 8 + src/assets/fonts/viga/latin-ext.css | 8 + src/assets/fonts/viga/latin.css | 8 + src/assets/fonts/viga/metadata.json | 19 ++ src/assets/fonts/viga/package.json | 30 +++ src/assets/fonts/viga/scss/metadata.scss | 17 ++ src/assets/fonts/viga/scss/mixins.scss | 184 ++++++++++++++++++ src/assets/fonts/viga/unicode.json | 4 + src/index.html | 21 ++ src/scripts/class/index.ts | 0 src/scripts/class/readme.md | 1 + src/scripts/events/index.ts | 0 src/scripts/events/readme.md | 1 + src/scripts/main.ts | 0 .../services/account/disconnect.service.ts | 0 src/scripts/services/account/index.module.ts | 0 src/scripts/services/account/login.service.ts | 0 .../services/account/register.service.ts | 0 src/scripts/services/index.ts | 0 src/scripts/services/readme.md | 1 + src/scripts/services/storage/cookie/readme.md | 0 .../storage/local-storage/clear.service.ts | 0 .../storage/local-storage/get.service.ts | 0 .../storage/local-storage/index.module.ts | 0 .../storage/local-storage/set.service.ts | 0 src/scripts/templates/index.ts | 0 src/scripts/templates/readme.md | 1 + src/scripts/types/index.ts | 0 src/scripts/types/readme.md | 1 + src/scripts/utils/index.ts | 0 src/scripts/utils/readme.md | 1 + src/scripts/utils/validators/index.ts | 0 src/styles/font.css | 13 ++ src/styles/index.css | 1 + src/styles/index.module.scss | 0 src/styles/readme.md | 5 + src/styles/tw.css | 3 + tailwind.config.js | 10 + tsconfig.json | 29 +++ 55 files changed, 643 insertions(+) create mode 100644 .gitignore create mode 100644 .parcelrc create mode 100644 .postcssrc create mode 100644 LICENSE create mode 100644 README.md create mode 100644 package.json create mode 100644 src/assets/fonts/viga/400.css create mode 100644 src/assets/fonts/viga/CHANGELOG.md create mode 100644 src/assets/fonts/viga/LICENSE create mode 100644 src/assets/fonts/viga/README.md create mode 100644 src/assets/fonts/viga/files/viga-latin-400-normal.woff create mode 100644 src/assets/fonts/viga/files/viga-latin-400-normal.woff2 create mode 100644 src/assets/fonts/viga/files/viga-latin-ext-400-normal.woff create mode 100644 src/assets/fonts/viga/files/viga-latin-ext-400-normal.woff2 create mode 100644 src/assets/fonts/viga/index.css create mode 100644 src/assets/fonts/viga/latin-400.css create mode 100644 src/assets/fonts/viga/latin-ext-400.css create mode 100644 src/assets/fonts/viga/latin-ext.css create mode 100644 src/assets/fonts/viga/latin.css create mode 100644 src/assets/fonts/viga/metadata.json create mode 100644 src/assets/fonts/viga/package.json create mode 100644 src/assets/fonts/viga/scss/metadata.scss create mode 100644 src/assets/fonts/viga/scss/mixins.scss create mode 100644 src/assets/fonts/viga/unicode.json create mode 100644 src/index.html create mode 100644 src/scripts/class/index.ts create mode 100644 src/scripts/class/readme.md create mode 100644 src/scripts/events/index.ts create mode 100644 src/scripts/events/readme.md create mode 100644 src/scripts/main.ts create mode 100644 src/scripts/services/account/disconnect.service.ts create mode 100644 src/scripts/services/account/index.module.ts create mode 100644 src/scripts/services/account/login.service.ts create mode 100644 src/scripts/services/account/register.service.ts create mode 100644 src/scripts/services/index.ts create mode 100644 src/scripts/services/readme.md create mode 100644 src/scripts/services/storage/cookie/readme.md create mode 100644 src/scripts/services/storage/local-storage/clear.service.ts create mode 100644 src/scripts/services/storage/local-storage/get.service.ts create mode 100644 src/scripts/services/storage/local-storage/index.module.ts create mode 100644 src/scripts/services/storage/local-storage/set.service.ts create mode 100644 src/scripts/templates/index.ts create mode 100644 src/scripts/templates/readme.md create mode 100644 src/scripts/types/index.ts create mode 100644 src/scripts/types/readme.md create mode 100644 src/scripts/utils/index.ts create mode 100644 src/scripts/utils/readme.md create mode 100644 src/scripts/utils/validators/index.ts create mode 100644 src/styles/font.css create mode 100644 src/styles/index.css create mode 100644 src/styles/index.module.scss create mode 100644 src/styles/readme.md create mode 100644 src/styles/tw.css create mode 100644 tailwind.config.js create mode 100644 tsconfig.json diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4614f33 --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +node_modules +pnpm-lock.yaml +yarn.lock +.parcel-cache +dist diff --git a/.parcelrc b/.parcelrc new file mode 100644 index 0000000..28d2587 --- /dev/null +++ b/.parcelrc @@ -0,0 +1,34 @@ +{ + "compressors": { + "*.{html,css,js,svg,map}": [ + "...", + "@parcel/compressor-gzip", + "@parcel/compressor-brotli" + ] + }, + "validators": { + "*.{ts,tsx}": ["@parcel/validator-typescript"] + }, + "transformers": { + "*.{ts,tsx}": [ + "@parcel/transformer-typescript-tsc" + ], + "bundle-text:*": [ + "...", + "@parcel/transformer-inline-string" + ], + "data-url:*": [ + "...", + "@parcel/transformer-inline-string" + ] + }, + "optimizers": { + "*.{jpg,jpeg,png}": [], + "data-url:*": [ + "...", + "@parcel/optimizer-data-url" + ] + }, + "extends": "@parcel/config-default", + "reporters": ["...", "parcel-reporter-clean-dist"] +} \ No newline at end of file diff --git a/.postcssrc b/.postcssrc new file mode 100644 index 0000000..d42c370 --- /dev/null +++ b/.postcssrc @@ -0,0 +1,5 @@ +{ + "plugins": { + "tailwindcss": {} + } +} \ No newline at end of file diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..2c961a3 --- /dev/null +++ b/LICENSE @@ -0,0 +1,9 @@ +MIT License + +Copyright (c) 2024 NOBODY + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..684cffe --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# template-basic-front + +Template pour les projets d'études 'frontend' HTML/SCSS/TS \ No newline at end of file diff --git a/package.json b/package.json new file mode 100644 index 0000000..4abfe92 --- /dev/null +++ b/package.json @@ -0,0 +1,33 @@ +{ + "name": "template-basic-front", + "version": "1.0.0", + "description": "Template pour les projets d'études 'frontend' HTML/SCSS/TS", + "browserslist": "> 0.5%, last 2 versions, not dead", + "private": true, + "source": "./src/scripts/main.ts", + "module": "./dist/index.js", + "scripts": { + "check": "tsc --noEmit", + "dev": "parcel serve -p 3000 'src/index.html' --lazy" + }, + "keywords": [], + "author": "Mathis H", + "license": "MIT", + "devDependencies": { + "@parcel/bundler-default": "^2.12.0", + "@parcel/compressor-brotli": "^2.12.0", + "@parcel/compressor-gzip": "^2.12.0", + "@parcel/config-default": "^2.12.0", + "@parcel/transformer-sass": "^2.12.0", + "@parcel/transformer-typescript-tsc": "^2.12.0", + "@parcel/validator-typescript": "^2.12.0", + "parcel": "latest", + "parcel-reporter-clean-dist": "^1.0.4", + "postcss": "^8.4.38", + "tailwindcss": "^3.4.3", + "typescript": ">=3.0.0" + }, + "dependencies": { + "@fontsource/viga": "^5.0.12" + } +} diff --git a/src/assets/fonts/viga/400.css b/src/assets/fonts/viga/400.css new file mode 100644 index 0000000..8a70035 --- /dev/null +++ b/src/assets/fonts/viga/400.css @@ -0,0 +1,19 @@ +/* viga-latin-ext-400-normal */ +@font-face { + font-family: 'Viga'; + font-style: normal; + font-display: swap; + font-weight: 400; + src: url(./files/viga-latin-ext-400-normal.woff2) format('woff2'), url(./files/viga-latin-ext-400-normal.woff) format('woff'); + unicode-range: U+0100-02AF,U+0304,U+0308,U+0329,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF; +} + +/* viga-latin-400-normal */ +@font-face { + font-family: 'Viga'; + font-style: normal; + font-display: swap; + font-weight: 400; + src: url(./files/viga-latin-400-normal.woff2) format('woff2'), url(./files/viga-latin-400-normal.woff) format('woff'); + unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD; +} \ No newline at end of file diff --git a/src/assets/fonts/viga/CHANGELOG.md b/src/assets/fonts/viga/CHANGELOG.md new file mode 100644 index 0000000..e798685 --- /dev/null +++ b/src/assets/fonts/viga/CHANGELOG.md @@ -0,0 +1,2 @@ +# Changelog +See the [Fontsource CHANGELOG.md](https://github.com/fontsource/fontsource/blob/main/CHANGELOG.md). \ No newline at end of file diff --git a/src/assets/fonts/viga/LICENSE b/src/assets/fonts/viga/LICENSE new file mode 100644 index 0000000..ec720ac --- /dev/null +++ b/src/assets/fonts/viga/LICENSE @@ -0,0 +1,93 @@ +Copyright (c) 2011 Fontstage (info@fontstage.com), with Reserved Font Name "Viga" + +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is copied below, and is also available with a FAQ at: +http://scripts.sil.org/OFL + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/src/assets/fonts/viga/README.md b/src/assets/fonts/viga/README.md new file mode 100644 index 0000000..5ae6441 --- /dev/null +++ b/src/assets/fonts/viga/README.md @@ -0,0 +1,47 @@ +# Fontsource Viga + +[![npm (scoped)](https://img.shields.io/npm/v/@fontsource/viga?color=brightgreen)](https://www.npmjs.com/package/@fontsource/viga) [![Generic badge](https://img.shields.io/badge/fontsource-passing-brightgreen)](https://github.com/fontsource/fontsource) [![Monthly downloads](https://badgen.net/npm/dm/@fontsource/viga)](https://github.com/fontsource/fontsource) [![Total downloads](https://badgen.net/npm/dt/@fontsource/viga)](https://github.com/fontsource/fontsource) [![GitHub stars](https://img.shields.io/github/stars/fontsource/fontsource.svg?style=social&label=Star)](https://github.com/fontsource/fontsource/stargazers) + +The CSS and web font files to easily self-host the “Viga” font. Please visit the main [Fontsource website](https://fontsource.org/fonts/viga) to view more details on this package. + +## Quick Installation + +Fontsource offers multiple methods to import the CSS, including using a bundler like Vite or using SASS. You can find full documentation [here](https://fontsource.org/docs/getting-started/introduction). + +```javascript +npm install @fontsource/viga +``` + +Within your app entry file or site component, import it in. + +```javascript +import "@fontsource/viga"; // Defaults to weight 400 +import "@fontsource/viga/400.css"; // Specify weight +import "@fontsource/viga/400-italic.css"; // Specify weight and style +``` + +Supported variables: +- Weights: `[400]` +- Styles: `[normal]` +- Subsets: `[latin,latin-ext]` + +> Note: `italic` may not be supported by all fonts. To learn more about what weights and styles are supported, please visit the [Fontsource website](https://fontsource.org/fonts/viga). + +Finally, you can reference the font name in a CSS stylesheet, CSS Module, or CSS-in-JS. + +```css +body { + font-family: "Viga"; +} +``` + +## Licensing +Always make sure to read the license for each font you use. Most of the fonts in the collection use the SIL Open Font License, v1.1. Some fonts use the Apache 2 license. The Ubuntu fonts use the Ubuntu Font License v1.0. + +Copyright (c) 2011 Fontstage (info@fontstage.com), with Reserved Font Name "Viga" +[OFL-1.1](http://scripts.sil.org/OFL) + +## Other Notes +Font version (provided by source): `v14`. + +If you have any suggestions or ideas to improve the performance of font loading or expand the existing library, feel free to star and contribute to this repository. You can share your suggestions or ideas by creating an [issue](https://github.com/fontsource/fontsource/issues). \ No newline at end of file diff --git a/src/assets/fonts/viga/files/viga-latin-400-normal.woff b/src/assets/fonts/viga/files/viga-latin-400-normal.woff new file mode 100644 index 0000000000000000000000000000000000000000..15f36cb53ea3994383e9ccdfc4528f9baaafb6ca GIT binary patch literal 11428 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 Sk)!2w)x~13Kq6xR_5TAlUgH}8 literal 0 HcmV?d00001 diff --git a/src/assets/fonts/viga/files/viga-latin-400-normal.woff2 b/src/assets/fonts/viga/files/viga-latin-400-normal.woff2 new file mode 100644 index 0000000000000000000000000000000000000000..fe752afa1dd79e41cdd24f841683eeb26cc68117 GIT binary patch literal 8304 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 literal 0 HcmV?d00001 diff --git a/src/assets/fonts/viga/files/viga-latin-ext-400-normal.woff b/src/assets/fonts/viga/files/viga-latin-ext-400-normal.woff new file mode 100644 index 0000000000000000000000000000000000000000..8bf4b78a0aa6a19040bd7c8ab11628c8b3ce7665 GIT binary patch literal 2848 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 literal 0 HcmV?d00001 diff --git a/src/assets/fonts/viga/files/viga-latin-ext-400-normal.woff2 b/src/assets/fonts/viga/files/viga-latin-ext-400-normal.woff2 new file mode 100644 index 0000000000000000000000000000000000000000..200513ea533a14efc1b182cee8fd466b48839992 GIT binary patch literal 2096 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 + + + + + + Document + + + + + + +
+
a
+
b
+ +
+ + + \ No newline at end of file diff --git a/src/scripts/class/index.ts b/src/scripts/class/index.ts new file mode 100644 index 0000000..e69de29 diff --git a/src/scripts/class/readme.md b/src/scripts/class/readme.md new file mode 100644 index 0000000..38c5a88 --- /dev/null +++ b/src/scripts/class/readme.md @@ -0,0 +1 @@ +> Contient les classes... \ No newline at end of file diff --git a/src/scripts/events/index.ts b/src/scripts/events/index.ts new file mode 100644 index 0000000..e69de29 diff --git a/src/scripts/events/readme.md b/src/scripts/events/readme.md new file mode 100644 index 0000000..4d721ca --- /dev/null +++ b/src/scripts/events/readme.md @@ -0,0 +1 @@ +> Contient les évenements du DOM \ No newline at end of file diff --git a/src/scripts/main.ts b/src/scripts/main.ts new file mode 100644 index 0000000..e69de29 diff --git a/src/scripts/services/account/disconnect.service.ts b/src/scripts/services/account/disconnect.service.ts new file mode 100644 index 0000000..e69de29 diff --git a/src/scripts/services/account/index.module.ts b/src/scripts/services/account/index.module.ts new file mode 100644 index 0000000..e69de29 diff --git a/src/scripts/services/account/login.service.ts b/src/scripts/services/account/login.service.ts new file mode 100644 index 0000000..e69de29 diff --git a/src/scripts/services/account/register.service.ts b/src/scripts/services/account/register.service.ts new file mode 100644 index 0000000..e69de29 diff --git a/src/scripts/services/index.ts b/src/scripts/services/index.ts new file mode 100644 index 0000000..e69de29 diff --git a/src/scripts/services/readme.md b/src/scripts/services/readme.md new file mode 100644 index 0000000..b67759b --- /dev/null +++ b/src/scripts/services/readme.md @@ -0,0 +1 @@ +> Contient les services. ex: RegisterService, DisconnectService \ No newline at end of file diff --git a/src/scripts/services/storage/cookie/readme.md b/src/scripts/services/storage/cookie/readme.md new file mode 100644 index 0000000..e69de29 diff --git a/src/scripts/services/storage/local-storage/clear.service.ts b/src/scripts/services/storage/local-storage/clear.service.ts new file mode 100644 index 0000000..e69de29 diff --git a/src/scripts/services/storage/local-storage/get.service.ts b/src/scripts/services/storage/local-storage/get.service.ts new file mode 100644 index 0000000..e69de29 diff --git a/src/scripts/services/storage/local-storage/index.module.ts b/src/scripts/services/storage/local-storage/index.module.ts new file mode 100644 index 0000000..e69de29 diff --git a/src/scripts/services/storage/local-storage/set.service.ts b/src/scripts/services/storage/local-storage/set.service.ts new file mode 100644 index 0000000..e69de29 diff --git a/src/scripts/templates/index.ts b/src/scripts/templates/index.ts new file mode 100644 index 0000000..e69de29 diff --git a/src/scripts/templates/readme.md b/src/scripts/templates/readme.md new file mode 100644 index 0000000..7481e11 --- /dev/null +++ b/src/scripts/templates/readme.md @@ -0,0 +1 @@ +> Contient les templates DOM \ No newline at end of file diff --git a/src/scripts/types/index.ts b/src/scripts/types/index.ts new file mode 100644 index 0000000..e69de29 diff --git a/src/scripts/types/readme.md b/src/scripts/types/readme.md new file mode 100644 index 0000000..b1c5315 --- /dev/null +++ b/src/scripts/types/readme.md @@ -0,0 +1 @@ +> Contient les interfaces, énumérations et autres... \ No newline at end of file diff --git a/src/scripts/utils/index.ts b/src/scripts/utils/index.ts new file mode 100644 index 0000000..e69de29 diff --git a/src/scripts/utils/readme.md b/src/scripts/utils/readme.md new file mode 100644 index 0000000..59468e9 --- /dev/null +++ b/src/scripts/utils/readme.md @@ -0,0 +1 @@ +> Contient des diférents éléments 'utilitaires' \ No newline at end of file diff --git a/src/scripts/utils/validators/index.ts b/src/scripts/utils/validators/index.ts new file mode 100644 index 0000000..e69de29 diff --git a/src/styles/font.css b/src/styles/font.css new file mode 100644 index 0000000..ea84597 --- /dev/null +++ b/src/styles/font.css @@ -0,0 +1,13 @@ +/* viga-latin-400-normal */ +@font-face { + font-family: 'Viga'; + font-style: normal; + font-display: swap; + font-weight: 400; + src: url(./../assets/fonts/viga/index.css); + unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD; +} + +body { + font-family: 'Viga', sans-serif; +} \ No newline at end of file diff --git a/src/styles/index.css b/src/styles/index.css new file mode 100644 index 0000000..f2e011a --- /dev/null +++ b/src/styles/index.css @@ -0,0 +1 @@ +@import url('./font.css'); \ No newline at end of file diff --git a/src/styles/index.module.scss b/src/styles/index.module.scss new file mode 100644 index 0000000..e69de29 diff --git a/src/styles/readme.md b/src/styles/readme.md new file mode 100644 index 0000000..273b2eb --- /dev/null +++ b/src/styles/readme.md @@ -0,0 +1,5 @@ +```javascript +import * as classes from './style.module.scss'; + +document.body.className = classes.body; +``` \ No newline at end of file diff --git a/src/styles/tw.css b/src/styles/tw.css new file mode 100644 index 0000000..bd6213e --- /dev/null +++ b/src/styles/tw.css @@ -0,0 +1,3 @@ +@tailwind base; +@tailwind components; +@tailwind utilities; \ No newline at end of file diff --git a/tailwind.config.js b/tailwind.config.js new file mode 100644 index 0000000..8faa6af --- /dev/null +++ b/tailwind.config.js @@ -0,0 +1,10 @@ +/** @type {import('tailwindcss').Config} */ +module.exports = { + content: [ + "./src/**/*.{html,js,ts,jsx,tsx}", + ], + theme: { + extend: {}, + }, + plugins: [], +} \ No newline at end of file diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..e4b5c1b --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,29 @@ +{ + "compilerOptions": { + "lib": [ + "esnext", + "dom" + ], + "baseUrl": "/", + "allowJs": true, + "skipLibCheck": true, + "strict": true, + "noEmit": true, + "esModuleInterop": true, + "module": "ESNext", + "isolatedModules": true, + "incremental": true, + "plugins": [], + "paths": { + "@/*": ["./src/*"], + "@class/*": ["./src/class/*"], + "@events/*": ["./src/events/*"], + "@services": ["./src/services"], + "@templates": ["./src/templates"], + "@types": ["./src/types"], + "@utils/*": ["./src/utils/*"] + } + }, + "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], + "exclude": ["node_modules"] +} \ No newline at end of file