🦁 This is the repo for the website of Mike Wink, my own website. https://mikewink.de
  • PHP 82.7%
  • JavaScript 17.3%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
2021-07-05 21:29:32 +02:00
public Add social service SVG icons 2021-07-05 21:29:32 +02:00
.gitignore Add Tailwind CSS and typography plugin packages 2021-07-05 21:26:36 +02:00
LICENSE Initial commit 2021-07-02 09:11:02 +02:00
package-lock.json Add Tailwind CSS and typography plugin packages 2021-07-05 21:26:36 +02:00
package.json Add Tailwind CSS and typography plugin packages 2021-07-05 21:26:36 +02:00
README.md Add README.md file 2021-07-05 21:27:34 +02:00
tailwind.config.js Add Tailwind CSS and typography plugin packages 2021-07-05 21:26:36 +02:00

Mike Wink Website

That is the static website for Mike Wink. It is powered by pure HTML and Tailwind CSS. The index is a PHP file so that I can have a dynamic elements.

Installation

Do a normal npm install to install dependencies. See the Tailwind CSS documentation for details.

Run dev watch

npx tailwindcss \
    -i ./src/css/styles.css \
    -o public/build/styles.css \
    --jit \
    --purge="./public/**/*.php" \
    --watch

Run production build

NODE_ENV=production \
    npx tailwindcss \
    -i ./src/css/styles.css \
    -o public/build/styles.css \
    --jit \
    --purge="./public/**/*.php" \
    --minify

Used assets