diff --git a/deploy.js b/deploy.js index 723dbc9..355fdfe 100644 --- a/deploy.js +++ b/deploy.js @@ -80,7 +80,7 @@ import("webdav").then(({ createClient }) => { cleanDist() .then(buildWithParcel) .then(loginToWebDAV) - .then((client) => cleanMainFolder(client).then(() => client)) + // .then((client) => cleanMainFolder(client).then(() => client)) WILL DELETE OTHER SUBFOLDERS .then((client) => transferContent(client)) .then(cleanDist) .then(() => console.log("Process completed successfully")) diff --git a/package.json b/package.json index ef7b396..1983aa2 100644 --- a/package.json +++ b/package.json @@ -5,5 +5,8 @@ "prettier": "^3.1.0", "prettier-plugin-tailwindcss": "^0.5.7", "tailwindcss": "^3.3.5" + }, + "dependencies": { + "flowbite": "^2.2.1" } } diff --git a/src/index.html b/src/index.html index 2189d77..58e56bc 100644 --- a/src/index.html +++ b/src/index.html @@ -1,161 +1,159 @@ - - - - Philippe Soubrier - - - - - - - -
- -
- Printables -
- -
- GitEA -
- -
- Facebook -
- -
- Cult3D -
- -
- Thingiverse -
- -
- Instagram -
- -
- Turbosquid -
- -
- Youtube -
- -
- Email -
+ + + + Philippe Soubrier + + + + + + + + +
+ +
+ Printables +
+ +
+ GitEA +
+ +
+ Facebook +
+ +
+ Cult3D +
+ +
+ Thingiverse +
+ +
+ Instagram +
+ +
+ Turbosquid +
+ +
+ Youtube +
+ +
+ Email +
+
+
+ Flupke +
+
+ + + -
- Flupke -
- -
-

Philippe Soubrier

- PhD Student - Hobbyist -

- 2023 -

-
- +
+

Philippe Soubrier

+ PhD Student - Hobbyist +

- 2023 -

+
+
+ + + + + \ No newline at end of file diff --git a/src/public/logo.png b/src/public/logo.png new file mode 100644 index 0000000..dd2f086 Binary files /dev/null and b/src/public/logo.png differ diff --git a/src/script.js b/src/script.js new file mode 100644 index 0000000..11f7fe3 --- /dev/null +++ b/src/script.js @@ -0,0 +1,8 @@ +import {Modal} from 'flowbite'; + +const $targetEl = document.getElementById('default-modal'); + +const modal = new Modal($targetEl); + +// model.show on load +modal.show(); \ No newline at end of file diff --git a/tailwind.config.js b/tailwind.config.js index 226d06d..04de92e 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -1,15 +1,12 @@ /** @type {import('tailwindcss').Config} */ module.exports = { - content: [ - "./src/**/*.{html,js,ts,jsx,tsx}", - ], + content: ["./src/**/*.{html,js,ts,jsx,tsx}"], theme: { extend: {}, fontFamily: { - body: ['Source Sans 3', 'sans-serif'], - title: ['Work Sans', 'sans-serif'] + body: ["Source Sans 3", "sans-serif"], + title: ["Work Sans", "sans-serif"], }, }, - plugins: [], -} - + plugins: [require("flowbite/plugin")], +};