diff --git a/package-lock.json b/package-lock.json index cffe336..f64e20e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -9,6 +9,7 @@ "license": "ISC", "devDependencies": { "@11ty/eleventy": "^0.12.1", + "@tailwindcss/aspect-ratio": "^0.2.0", "autoprefixer": "^10.2.5", "cssnano": "^5.0.1", "postcss": "^8.2.13", @@ -226,6 +227,12 @@ "node": ">= 8" } }, + "node_modules/@tailwindcss/aspect-ratio": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/@tailwindcss/aspect-ratio/-/aspect-ratio-0.2.0.tgz", + "integrity": "sha512-v5LyHkwXj/4lI74B06zUrmWEdmSqS43+jw717pkt3fAXqb7ALwu77A8t7j+Bej+ZbdlIIqNMYheGN7wSGV1A6w==", + "dev": true + }, "node_modules/@trysound/sax": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.1.1.tgz", @@ -6055,6 +6062,12 @@ "fastq": "^1.6.0" } }, + "@tailwindcss/aspect-ratio": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/@tailwindcss/aspect-ratio/-/aspect-ratio-0.2.0.tgz", + "integrity": "sha512-v5LyHkwXj/4lI74B06zUrmWEdmSqS43+jw717pkt3fAXqb7ALwu77A8t7j+Bej+ZbdlIIqNMYheGN7wSGV1A6w==", + "dev": true + }, "@trysound/sax": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.1.1.tgz", diff --git a/package.json b/package.json index adbd819..b5b5205 100644 --- a/package.json +++ b/package.json @@ -21,6 +21,7 @@ "homepage": "https://gitlab.com/gaiety/fursona#readme", "devDependencies": { "@11ty/eleventy": "^0.12.1", + "@tailwindcss/aspect-ratio": "^0.2.0", "autoprefixer": "^10.2.5", "cssnano": "^5.0.1", "postcss": "^8.2.13", diff --git a/src/_includes/default.njk b/src/_includes/default.njk index 398d35d..0bf6796 100644 --- a/src/_includes/default.njk +++ b/src/_includes/default.njk @@ -82,12 +82,32 @@ About
- {{ about }} + {{ about | safe }}
+ +
+
+
+
+
+

+ Want art with her? + Reach out and let's make it happen! +

+

Gaiety is generally available for most kinds of art with fun people. Be kind, respectful and let's find an artist together and chat.

+ Shout or Note on FurAffinity.net +
+
+ + Reference by ZeDzar + +
+
+
diff --git a/src/assets/reference-sfw.jpg b/src/assets/reference-sfw.jpg new file mode 100644 index 0000000..40b6688 Binary files /dev/null and b/src/assets/reference-sfw.jpg differ diff --git a/src/index.md b/src/index.md index f3d05db..2414528 100644 --- a/src/index.md +++ b/src/index.md @@ -9,7 +9,6 @@ species: Anatolian Shepherd personality: 💋 Playful, Courageous, Friendly gender: 💃 Female [She/Her] orientation: 🌈 Bisexual (Leaning Lesbian) -about: ... +about: While she's evolved time and time again she's the same shep I've had since I was a pup in the real. Gaiety is a 1:1 reflection of her creator. So much so that I've adopted her name as my middle name. You can learn a little more about her creator at Gaiety.me --- -Sup diff --git a/tailwind.config.js b/tailwind.config.js index d5a34f0..4b26720 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -7,5 +7,7 @@ module.exports = { variants: { extend: {}, }, - plugins: [], + plugins: [ + require('@tailwindcss/aspect-ratio'), + ], }