From ede9c49e9f4d6f472c29d6c18db1a2257ed04b80 Mon Sep 17 00:00:00 2001 From: nico Date: Thu, 19 Dec 2024 14:07:20 +0100 Subject: [PATCH] feat(content): added much content --- layouts/quote.vue | 12 ++++ layouts/title-image.vue | 14 +++- pages/eco.md | 6 ++ public/images/field.jpg | Bin 0 -> 102172 bytes public/images/surricate.jpg | Bin 0 -> 109784 bytes slides.md | 127 +++++++++++++++++++++++++++++++----- styles/base.css | 2 +- 7 files changed, 141 insertions(+), 20 deletions(-) create mode 100644 pages/eco.md create mode 100644 public/images/field.jpg create mode 100644 public/images/surricate.jpg diff --git a/layouts/quote.vue b/layouts/quote.vue index 7edc1f5..7fdfa41 100644 --- a/layouts/quote.vue +++ b/layouts/quote.vue @@ -1,5 +1,17 @@ + + diff --git a/layouts/title-image.vue b/layouts/title-image.vue index 310859e..78e0722 100644 --- a/layouts/title-image.vue +++ b/layouts/title-image.vue @@ -5,6 +5,14 @@ const props = defineProps({ image: { type: String, required: true + }, + ratio: { + type: String, + default: '3fr 2fr' + }, + imageAlign: { + type: String, + default: 'center' } }) @@ -14,7 +22,7 @@ const image = imageSrc(props.image)