diff --git a/assets/css/index.css b/assets/css/index.css
index a8bf7bc..83c9df9 100644
--- a/assets/css/index.css
+++ b/assets/css/index.css
@@ -1,16 +1,14 @@
-* {
- margin: 0;
- padding: 0;
-}
+@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');
+/* ===== CSS Variables ===== */
:root {
--padding: 1.5rem;
--color-black: #000;
--color-white: #fff;
--color-grey: #777;
--color-light: #efefef;
- --color-text: var(--color-black);
- --color-text-grey: var(--color-grey);
+ --color-text: #e8f4ff;
+ --color-text-grey: #cfd9e4;
--color-background: var(--color-white);
--color-code-light-grey: #cacbd1;
--color-code-comment: #a9aaad;
@@ -22,52 +20,237 @@
--color-code-aqua: #8abeb7;
--color-code-blue: #7e9abf;
--color-code-purple: #b294bb;
- --font-family-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
+ --font-family-sans: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
--font-family-mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
}
-html {
+/* ===== Background overlay ===== */
+body {
font-family: var(--font-family-sans);
color: var(--color-text);
- background: var(--color-background);
-}
-img {
- width: 100%;
-}
-body {
- padding: var(--padding);
- max-width: 70rem;
- margin: 0 auto;
-}
-li {
- list-style: none;
-}
-a {
- color: currentColor;
- text-decoration: none;
-}
-button {
- font: inherit;
background: none;
- border: 0;
- color: currentColor;
+ position: relative;
+ min-height: 100vh;
+ z-index: 0;
+}
+body::before {
+ content: "";
+ position: fixed;
+ top: 50%;
+ left: 50%;
+ width: 320vmax;
+ height: 320vmax;
+ background: linear-gradient(135deg, #3f0e00, #a63b00, #ffbe6e);
+ z-index: -1;
+ animation: rotate-gradient 60s linear infinite;
+ pointer-events: none;
+}
+.is-blackout body::before {
+ animation: none;
+ background: #000;
+}
+.blackout-overlay {
+ position: fixed;
+ inset: 0;
+ background: rgba(0, 0, 0, 0.95);
+ color: #fff;
+ display: none;
+ align-items: center;
+ justify-content: center;
+ flex-direction: column;
+ text-align: center;
+ z-index: 100;
+ font-size: 2rem;
+ letter-spacing: 0.2em;
+ pointer-events: none;
+}
+.is-blackout .blackout-overlay {
+ display: flex;
+}
+
+/* ===== Magnetic Menu (improved) ===== */
+.magnetic-menu {
+ min-height: 70vh;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ padding: 4rem var(--padding) 2rem;
+ text-align: center;
+}
+.magnetic-menu__inner {
+ display: flex;
+ flex-wrap: wrap;
+ justify-content: center;
+ gap: 2.5rem;
+ width: min(60rem, 100%);
+}
+.magnetic-menu__item {
+ width: clamp(8rem, 18vw, 12rem);
+ flex: 0 0 auto;
+ aspect-ratio: 1 / 1;
+ border-radius: 50%;
+ position: relative;
+ overflow: visible;
+ display: grid;
+ place-items: center;
+ text-decoration: none;
+ color: var(--color-text);
+ transition: transform 200ms ease-out;
+ will-change: transform;
cursor: pointer;
}
-strong, b {
+.magnetic-menu__item:hover {
+ transform: scale(1.1) rotate(5deg);
+}
+.magnetic-menu__image {
+ width: 62%;
+ aspect-ratio: 1 / 1;
+ border-radius: 50%;
+ overflow: hidden;
+ position: relative;
+ z-index: 1;
+}
+.magnetic-menu__image img {
+ width: 100%;
+ height: 100%;
+ object-fit: cover;
+ display: block;
+}
+.magnetic-menu__circle {
+ position: absolute;
+ inset: 0;
+ width: 100%;
+ height: 100%;
+ pointer-events: none;
+}
+.magnetic-menu__circle text {
+ font-size: clamp(0.55rem, 1.6vw, 0.75rem);
+ letter-spacing: 0.4em;
+ text-transform: uppercase;
+ fill: var(--color-text);
font-weight: 600;
}
-small {
- font-size: inherit;
- color: var(--color-text-grey);
+.magnetic-menu__item.is-placeholder {
+ pointer-events: none;
+ opacity: 0.45;
}
-.bg-light {
- background-color: var(--color-light);
+/* ===== NEW: Hover text on magnetic menu items ===== */
+.magnetic-menu__item::before {
+ content: attr(data-lamp-desc);
+ position: absolute;
+ inset: 0;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ opacity: 0;
+ transition: opacity 200ms ease;
+ pointer-events: none;
+ background: rgba(0, 0, 0, 0.7);
+ color: var(--color-white);
+ font-size: clamp(0.4rem, 1.2vw, 0.5rem);
+ letter-spacing: 0.2em;
+ text-transform: uppercase;
+ z-index: 10;
+ width: 100%;
+ height: 100%;
}
-.color-grey {
- color: var(--color-text-grey);
+.magnetic-menu__item:hover::before {
+ opacity: 1;
}
+/* ===== Footer magnet ===== */
+.footer-magnet {
+ display: inline-block;
+ transition: transform 280ms cubic-bezier(.25, .8, .25, 1);
+ will-change: transform;
+ user-select: none;
+}
+.footer-dim-image {
+ display: block;
+ margin-top: 1rem;
+ filter: brightness(1);
+ transition: filter 250ms ease;
+ cursor: pointer;
+}
+
+/* ===== Responsive ===== */
+@media (max-width: 800px) {
+ .magnetic-menu {
+ min-height: auto;
+ padding: 3rem var(--padding) 1rem;
+ justify-content: flex-start;
+ }
+ .magnetic-menu__inner {
+ width: 100%;
+ justify-content: space-between;
+ gap: 1.5rem;
+ }
+ .magnetic-menu__item {
+ flex: 1 1 calc((100% / 3) - 1rem);
+ max-width: none;
+ width: calc((100% / 3) - 1rem);
+ }
+ .has-top-menu .magnetic-menu__inner {
+ justify-content: space-between;
+ }
+}
+@media (max-width: 520px) {
+ .magnetic-menu {
+ min-height: auto;
+ padding: 1rem var(--padding) 0.5rem;
+ }
+ .magnetic-menu__inner {
+ gap: 0.75rem;
+ }
+ .magnetic-menu__item {
+ flex: 1 1 calc((100% / 3) - 0.5rem);
+ width: calc((100% / 3) - 0.5rem);
+ }
+ .magnetic-menu__circle text {
+ font-size: clamp(0.45rem, 3vw, 0.6rem);
+ }
+}
+
+/* ===== Top menu mode ===== */
+.has-top-menu .magnetic-menu {
+ position: sticky;
+ top: 0;
+ z-index: 20;
+ min-height: auto;
+ justify-content: center;
+ padding: 1rem 0 0.5rem;
+}
+.has-top-menu .magnetic-menu__inner {
+ justify-content: center;
+ max-width: 70rem;
+ margin: 0 auto;
+ padding: 0 var(--padding);
+}
+.has-top-menu .main {
+ padding-top: calc(var(--padding) + 6rem);
+}
+
+/* ===== Main layout ===== */
+.main {
+ max-width: 70rem;
+ margin: 0 auto;
+ padding: var(--padding);
+ padding-bottom: calc(8rem + var(--padding));
+}
+
+/* ===== Base elements ===== */
+li { list-style: none; }
+a { color: currentColor; text-decoration: none; }
+button { font: inherit; background: none; border: 0; color: currentColor; cursor: pointer; }
+strong, b { font-weight: 600; }
+small { font-size: inherit; color: var(--color-text-grey); }
+
+/* ===== Background helpers ===== */
+.bg-light { background-color: var(--color-light); }
+.color-grey { color: var(--color-text-grey); }
+
+/* ===== Header ===== */
.header {
position: relative;
display: flex;
@@ -77,7 +260,6 @@ small {
margin-left: -1rem;
margin-bottom: 6rem;
}
-
.logo {
padding: 1rem;
display: flex;
@@ -86,189 +268,56 @@ small {
cursor: pointer;
}
-.menu {
- display: flex;
-}
-.menu a {
- padding: 1rem;
- display: block;
-}
-.menu a[aria-current] {
- text-decoration: underline;
-}
+/* ===== Menu ===== */
+.menu { display: flex; }
+.menu a { padding: 1rem; display: block; }
+.menu a[aria-current] { text-decoration: underline; }
-.social {
- display: flex;
- padding: 0 .5rem;
-}
-.social a {
- padding: 1rem .5rem;
-}
+/* ===== Social ===== */
+.social { display: flex; padding: 0 .5rem; }
+.social a { padding: 1rem .5rem; }
-.section {
- padding: 3rem 0;
-}
+/* ===== Sections ===== */
+.section { padding: 3rem 0; }
-.grid {
- --columns: 12;
- --gutter: 3rem;
- display: grid;
- grid-gap: var(--gutter);
- grid-template-columns: 1fr;
-}
-.grid > .column {
- margin-bottom: var(--gutter);
-}
+/* ===== Grid ===== */
+.grid { --columns: 12; --gutter: 3rem; display: grid; grid-gap: var(--gutter); grid-template-columns: 1fr; }
+.grid > .column { margin-bottom: var(--gutter); }
-.autogrid {
- --gutter: 3rem;
- --min: 10rem;
- display: grid;
- grid-gap: var(--gutter);
- grid-template-columns: repeat(auto-fit, minmax(var(--min), 1fr));
- grid-auto-flow: dense;
-}
+/* ===== Auto-grid ===== */
+.autogrid { --gutter: 3rem; --min: 10rem; display: grid; grid-gap: var(--gutter); grid-template-columns: repeat(auto-fit, minmax(var(--min), 1fr)); grid-auto-flow: dense; }
-h1, h2, h3, h4, h5, h6 {
- font-size: inherit;
- font-weight: inherit;
- line-height: inherit;
-}
+/* ===== Headings ===== */
+h1, h2, h3, h4, h5, h6 { font-size: inherit; font-weight: inherit; line-height: inherit; }
-.text {
- line-height: 1.5em;
-}
-.text a {
- text-decoration: underline;
-}
-.text :first-child {
- margin-top: 0;
-}
-.text :last-child {
- margin-bottom: 0;
-}
-.text p,
-.text ul,
-.text ol {
- margin-bottom: 1.5rem;
-}
-.text ul,
-.text ol {
- margin-left: 1rem;
-}
-.text ul p,
-.text ol p {
- margin-bottom: 0;
-}
-.text ul > li {
- list-style: disc;
-}
-.text ol > li {
- list-style: decimal;
-}
-.text ul ol,
-.text ul ul,
-.text ol ul,
-.text ol ol {
- margin-bottom: 0;
-}
-.text h1,
-.h1,
-.intro {
- font-size: 2rem;
- margin-bottom: 3rem;
- line-height: 1.25em;
-}
-.text h2,
-.h2 {
- font-size: 1.25rem;
- font-weight: 600;
- margin-bottom: 1.25rem;
-}
-.text h3,
-.h3 {
- font-weight: 600;
-}
-.text .codeblock {
- display: grid;
-}
-.text code {
- font-family: var(--font-family-mono);
- font-size: 1em;
- background: var(--color-light);
- padding: 0 .5rem;
- display: inline-block;
- color: var(--color-black);
-}
-.text pre {
- margin: 3rem 0;
- background: var(--color-black);
- color: var(--color-white);
- padding: 1.5rem;
- overflow-x: scroll;
- overflow-y: hidden;
- line-height: 1.5rem;
-}
-.text pre code {
- padding: 0;
- background: none;
- color: inherit;
-}
-.text hr {
- margin: 6rem 0;
-}
-.text dt {
- font-weight: 600;
-}
-.text blockquote {
- font-size: 1.25rem;
- line-height: 1.325em;
- border-left: 2px solid var(--color-black);
- padding-left: 1rem;
- margin: 3rem 0;
- max-width: 25rem;
-}
-.text blockquote footer {
- font-size: .875rem;
- font-style: italic;
-}
-.text figure {
- margin: 3rem 0;
-}
-.text figcaption {
- padding-top: .75rem;
- color: var(--color-text-grey);
-}
-.text figure ul {
- line-height: 0;
- display: grid;
- gap: 1.5rem;
- margin: 0;
- grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
-}
-.text figure ul li {
- list-style: none;
-}
+/* ===== Text ===== */
+.text { line-height: 1.5em; }
+.text a { text-decoration: underline; }
+.text :first-child { margin-top: 0; }
+.text :last-child { margin-bottom: 0; }
+.text p, .text ul, .text ol { margin-bottom: 1.5rem; }
+.text ul, .text ol { margin-left: 1rem; }
+.text ul p, .text ol p { margin-bottom: 0; }
+.text ul > li { list-style: disc; }
+.text ol > li { list-style: decimal; }
+.text ul ol, .text ul ul, .text ol ul, .text ol ol { margin-bottom: 0; }
+.text h1, .h1, .intro { font-size: 2rem; margin-bottom: 3rem; line-height: 1.25em; }
+.text h2, .h2 { font-size: 1.25rem; font-weight: 600; margin-bottom: 1.25rem; }
+.text h3, .h3 { font-weight: 600; }
+.text .codeblock { display: grid; }
+.text code { font-family: var(--font-family-mono); font-size: 1em; background: var(--color-light); padding: 0 .5rem; display: inline-block; color: var(--color-black); }
+.text pre { margin: 3rem 0; background: var(--color-black); color: var(--color-white); padding: 1.5rem; overflow-x: scroll; overflow-y: hidden; line-height: 1.5rem; }
+.text pre code { padding: 0; background: none; color: inherit; }
-hr {
- border: 0;
- background: currentColor;
- height: 2px;
- width: 1.5rem;
- margin: 3rem auto;
-}
+/* ===== HR & Alignment ===== */
+hr { border: 0; background: currentColor; height: 2px; width: 1.5rem; margin: 3rem auto; }
+.align-center { text-align: center; }
-.align-center {
- text-align: center;
-}
-
-.intro {
- max-width: 40rem;
-}
-.intro *:not(:last-child) {
- margin-bottom: 1em;
-}
+/* ===== Intro ===== */
+.intro { max-width: 40rem; }
+.intro *:not(:last-child) { margin-bottom: 1em; }
+/* ===== CTA ===== */
.cta {
background: var(--color-black);
color: var(--color-white);
@@ -279,6 +328,7 @@ hr {
outline: 2px solid var(--color-black);
}
+/* ===== Box ===== */
.box {
background: var(--color-light);
padding: 1.5rem;
@@ -286,149 +336,5 @@ hr {
outline: 2px solid var(--color-light);
}
-.video,
-.img {
- position: relative;
- display: block;
- --w: 1;
- --h: 1;
- padding-bottom: calc(100% / var(--w) * var(--h));
- background: var(--color-black);
-}
-.img img,
-.video iframe {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- width: 100%;
- height: 100%;
- object-fit: cover;
- border: 0;
-}
-.img[data-contain] img {
- object-fit: contain;
-}
-.img-caption,
-.video-caption {
- padding-top: .75rem;
- line-height: 1.5em;
-}
-
-.footer {
- padding: 9rem 0 6rem;
- line-height: 1.5em;
-}
-.footer:before {
- content: "";
- display: block;
- width: 1.5rem;
- height: 2px;
- background: var(--color-black);
- margin-bottom: 1.5rem;
-}
-
-.footer h2 {
- font-weight: 600;
- margin-bottom: .75rem;
-}
-.footer ul,
-.footer p {
- color: var(--color-text-grey);
-}
-.footer p {
- max-width: 15rem;
-}
-.footer a:hover {
- color: var(--color-text);
-}
-
-
-.map {
- --w: 2;
- --h: 1;
- padding-bottom: calc(100% / var(--w) * var(--h));
- position: relative;
- overflow: hidden;
- background: var(--color-black);
-}
-.map iframe {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- width: 100%;
- height: 100%;
- border: 0;
-}
-
-.margin-s {
- margin-bottom: .75rem;
-}
-.margin-m {
- margin-bottom: 1.5rem;
-}
-.margin-l {
- margin-bottom: 3rem;
-}
-.margin-xl {
- margin-bottom: 4.5rem;
-}
-.margin-xxl {
- margin-bottom: 6rem;
-}
-
-
-@media screen and (min-width: 60rem) {
- body {
- --padding: 3rem;
- }
-
- .grid {
- grid-template-columns: repeat(12, 1fr);
- }
- .grid > .column {
- grid-column: span var(--columns);
- }
-
-}
-
-.pagination {
- display: flex;
- padding-top: 6rem;
-}
-.pagination > span {
- color: var(--color-text-grey);
-}
-.pagination > * {
- padding: .5rem;
- width: 3rem;
- text-align: center;
- border: 2px solid currentColor;
- margin-right: 1.5rem;
-}
-.pagination > a:hover {
- background: var(--color-black);
- color: var(--color-white);
- border-color: var(--color-black);
-}
-
-.note-excerpt {
- line-height: 1.5em;
-}
-.note-excerpt header {
- margin-bottom: 1.5rem;
-}
-.note-excerpt figure {
- margin-bottom: .5rem;
-}
-.note-excerpt-title {
- font-weight: 600;
-}
-.note-excerpt-date {
- color: var(--color-text-grey);
-}
-
-
+/* ===== Video ===== */
+.video,
\ No newline at end of file
diff --git a/assets/css/templates/home.css b/assets/css/templates/home.css
index 44f7c46..dd8ceab 100644
--- a/assets/css/templates/home.css
+++ b/assets/css/templates/home.css
@@ -10,7 +10,6 @@
position: relative;
--cols: 1;
--rows: 1;
-
overflow: hidden;
background: #000;
line-height: 0;
@@ -55,9 +54,15 @@
left: 0;
line-height: 1;
text-align: center;
- background: rgba(0,0,0, .5);
+ background: rgba(0,0,0, .7);
+ opacity: 0;
+ transition: opacity .3s;
+}
+.home-grid li:hover figcaption {
+ opacity: 1;
}
+/* Medium screens */
@media screen and (min-width: 45em) {
.home-grid {
grid-template-columns: repeat(3, 1fr);
@@ -69,4 +74,4 @@
.home-grid a {
padding-bottom: 52.65%;
}
-}
+}
\ No newline at end of file
diff --git a/assets/js/index.js b/assets/js/index.js
index eefdce2..124464d 100644
--- a/assets/js/index.js
+++ b/assets/js/index.js
@@ -5,3 +5,150 @@ Array.from(document.querySelectorAll("[data-lightbox]")).forEach(element => {
basicLightbox.create(``).show();
};
});
+
+let lastPointerType = "mouse";
+window.addEventListener("pointerdown", event => {
+ lastPointerType = event.pointerType || "mouse";
+});
+
+// Central magnetic menu
+const menuContainer = document.querySelector("[data-magnetic-menu]");
+if (menuContainer) {
+ const menuItems = Array.from(menuContainer.querySelectorAll(".magnetic-menu__item"));
+ const hoverRadius = 240;
+ const shiftStrength = 45;
+ const spread = 18;
+ const isHome = document.body.classList.contains("is-home");
+
+ const applySpreadOnly = () => {
+ menuItems.forEach((item, index) => {
+ const neighborSpread = (index - (menuItems.length - 1) / 2) * spread;
+ item.style.transform = `translate(${neighborSpread}px, 0px)`;
+ });
+ };
+
+ const handleMenuPointer = event => {
+ const pointerX = event?.clientX ?? null;
+ const pointerY = event?.clientY ?? null;
+
+ menuItems.forEach((item, index) => {
+ const rect = item.getBoundingClientRect();
+ const centerX = rect.left + rect.width / 2;
+ const centerY = rect.top + rect.height / 2;
+ let offsetX = 0;
+ let offsetY = 0;
+
+ if (pointerX !== null) {
+ const dx = pointerX - centerX;
+ const dy = pointerY - centerY;
+ const distance = Math.hypot(dx, dy);
+
+ if (distance < hoverRadius && distance > 0.001) {
+ const force = 1 - distance / hoverRadius;
+ offsetX = -(dx / distance) * force * shiftStrength;
+ offsetY = -(dy / distance) * force * shiftStrength;
+ }
+ }
+
+ const neighborSpread = (index - (menuItems.length - 1) / 2) * spread;
+ item.style.transform = `translate(${offsetX + neighborSpread}px, ${offsetY}px)`;
+ });
+ };
+
+ menuContainer.addEventListener("pointermove", handleMenuPointer);
+ menuContainer.addEventListener("pointerleave", applySpreadOnly);
+ applySpreadOnly();
+
+ if (isHome) {
+ const pinMenu = () => {
+ document.body.classList.add("has-top-menu");
+ };
+ menuItems.forEach(item => {
+ item.addEventListener("pointerdown", pinMenu, { once: true });
+ item.addEventListener("click", pinMenu, { once: true });
+ item.addEventListener("touchstart", pinMenu, { once: true });
+ });
+ }
+}
+
+// Footer magnet hover
+const footer = document.querySelector(".footer");
+const footerMagnets = footer ? Array.from(footer.querySelectorAll("[data-footer-magnet]")) : [];
+if (footer && footerMagnets.length) {
+ const radius = 240;
+ const maxOffset = 60;
+ let pointerX = null;
+ let pointerY = null;
+ let rafId = null;
+
+ const updateFooterMagnets = () => {
+ footerMagnets.forEach(item => {
+ if (pointerX === null || pointerY === null) {
+ item.style.transform = "";
+ return;
+ }
+ const rect = item.getBoundingClientRect();
+ const centerX = rect.left + rect.width / 2;
+ const centerY = rect.top + rect.height / 2;
+ const dx = centerX - pointerX;
+ const dy = centerY - pointerY;
+ const distance = Math.hypot(dx, dy);
+
+ if (distance < radius && distance > 0.001) {
+ const force = 1 - distance / radius;
+ const offsetX = (dx / distance) * force * maxOffset;
+ const offsetY = (dy / distance) * force * maxOffset;
+ item.style.transform = `translate(${offsetX}px, ${offsetY}px)`;
+ } else {
+ item.style.transform = "";
+ }
+ });
+ rafId = null;
+ };
+
+ const requestFooterUpdate = () => {
+ if (rafId === null) {
+ rafId = requestAnimationFrame(updateFooterMagnets);
+ }
+ };
+
+ footer.addEventListener("pointermove", event => {
+ pointerX = event.clientX;
+ pointerY = event.clientY;
+ requestFooterUpdate();
+ });
+
+ footer.addEventListener("pointerleave", () => {
+ pointerX = null;
+ pointerY = null;
+ footerMagnets.forEach(item => {
+ item.style.transform = "";
+ });
+ });
+}
+
+// Footer image brightness cycle
+const footerDimImage = document.querySelector(".footer-dim-image");
+if (footerDimImage) {
+ const brightnessSteps = [1, 0.75, 0.5, 0.25];
+ let brightnessIndex = Number(footerDimImage.dataset.brightnessIndex || 0);
+ footerDimImage.style.filter = `brightness(${brightnessSteps[brightnessIndex]})`;
+
+ footerDimImage.addEventListener("click", () => {
+ brightnessIndex = (brightnessIndex + 1) % brightnessSteps.length;
+ footerDimImage.dataset.brightnessIndex = String(brightnessIndex);
+ footerDimImage.style.filter = `brightness(${brightnessSteps[brightnessIndex]})`;
+
+ if (!document.body.classList.contains("is-blackout") && Math.random() < 0.15) {
+ document.body.classList.add("is-blackout");
+ }
+ });
+}
+
+// Blackout toggle based on click
+const blackoutOverlay = document.querySelector("[data-blackout-overlay]");
+document.addEventListener("pointerdown", () => {
+ if (document.body.classList.contains("is-blackout")) {
+ document.body.classList.remove("is-blackout");
+ }
+}, true);
diff --git a/content/1_lamps/1_vintage/album.txt b/content/1_lamps/1_vintage/album.txt
new file mode 100644
index 0000000..10cac5e
--- /dev/null
+++ b/content/1_lamps/1_vintage/album.txt
@@ -0,0 +1,25 @@
+Title: Aurora Weave Pendant
+
+----
+
+Cover: - file://Jc0l1BA0i5z0QjRf
+
+----
+
+Headline: Sculpted orbit for evening rituals
+
+----
+
+Subheadline: Hand-braided rattan halo for golden evenings
+
+----
+
+Text:
Aurora Weave gathers slender rattan strands around a linen core, diffusing light into a gentle dusk that favours story corners and shared tables alike. The woven silhouette casts soft, organic shadows that dance along the walls.
Each pendant is finished with brushed brass detailing and dim-to-warm LEDs, balancing artisanal tactility with understated technology for living rooms that double as sanctuaries.
+ +---- + +Tags: pendant, woven, living room + +---- + +Uuid: v59sIVPYM141Uotu diff --git a/content/1_lamps/1_vintage/cheesy-autumn.jpg b/content/1_lamps/1_vintage/cheesy-autumn.jpg new file mode 100644 index 0000000..7cb4137 Binary files /dev/null and b/content/1_lamps/1_vintage/cheesy-autumn.jpg differ diff --git a/content/1_lamps/1_vintage/cheesy-autumn.jpg.txt b/content/1_lamps/1_vintage/cheesy-autumn.jpg.txt new file mode 100644 index 0000000..cc51121 --- /dev/null +++ b/content/1_lamps/1_vintage/cheesy-autumn.jpg.txt @@ -0,0 +1,29 @@ +Caption: Aurora Weave pendant scattering honeyed light across oak panels. + +---- + +Alt: Aurora Weave pendant lamp in a reading nook + +---- + +Photographer: Lichterei Studio + +---- + +License: Courtesy of Lichterei + +---- + +Link: + +---- + +Template: image + +---- + +Sort: 2 + +---- + +Uuid: p6ClztZrkCB1KfLF diff --git a/content/1_lamps/1_vintage/last-tree-standing.jpg b/content/1_lamps/1_vintage/last-tree-standing.jpg new file mode 100644 index 0000000..d9bd537 Binary files /dev/null and b/content/1_lamps/1_vintage/last-tree-standing.jpg differ diff --git a/content/1_lamps/1_vintage/last-tree-standing.jpg.txt b/content/1_lamps/1_vintage/last-tree-standing.jpg.txt new file mode 100644 index 0000000..53e953d --- /dev/null +++ b/content/1_lamps/1_vintage/last-tree-standing.jpg.txt @@ -0,0 +1,29 @@ +Caption: Brass canopy detail of Aurora Weave hovering over linen upholstery. + +---- + +Alt: Close view of Aurora Weave pendant with layered rattan bands + +---- + +Photographer: Lichterei Studio + +---- + +License: Courtesy of Lichterei + +---- + +Link: + +---- + +Template: image + +---- + +Sort: 1 + +---- + +Uuid: mX73tq8jwu6bLxBt diff --git a/content/1_lamps/1_vintage/monster-trees-in-the-fog.jpg b/content/1_lamps/1_vintage/monster-trees-in-the-fog.jpg new file mode 100644 index 0000000..154c4d5 Binary files /dev/null and b/content/1_lamps/1_vintage/monster-trees-in-the-fog.jpg differ diff --git a/content/1_lamps/1_vintage/monster-trees-in-the-fog.jpg.txt b/content/1_lamps/1_vintage/monster-trees-in-the-fog.jpg.txt new file mode 100644 index 0000000..9f6a003 --- /dev/null +++ b/content/1_lamps/1_vintage/monster-trees-in-the-fog.jpg.txt @@ -0,0 +1,29 @@ +Caption: Aurora Weave casting layered shadows that drift like morning mist. + +---- + +Alt: Aurora Weave pendant diffusing light through hand-braided rattan + +---- + +Photographer: Lichterei Studio + +---- + +License: Courtesy of Lichterei + +---- + +Link: + +---- + +Template: image + +---- + +Sort: 3 + +---- + +Uuid: Jc0l1BA0i5z0QjRf diff --git a/content/1_lamps/1_vintage/sharewood-forest.jpg b/content/1_lamps/1_vintage/sharewood-forest.jpg new file mode 100644 index 0000000..fd0053f Binary files /dev/null and b/content/1_lamps/1_vintage/sharewood-forest.jpg differ diff --git a/content/1_lamps/1_vintage/sharewood-forest.jpg.txt b/content/1_lamps/1_vintage/sharewood-forest.jpg.txt new file mode 100644 index 0000000..44737b3 --- /dev/null +++ b/content/1_lamps/1_vintage/sharewood-forest.jpg.txt @@ -0,0 +1,29 @@ +Caption: Evening vignette of Aurora Weave guiding guests toward a lounge alcove. + +---- + +Alt: Ambient view of Aurora Weave pendant illuminating a walkway + +---- + +Photographer: Lichterei Studio + +---- + +License: Courtesy of Lichterei + +---- + +Link: + +---- + +Template: image + +---- + +Sort: 4 + +---- + +Uuid: 4J6JHoVhngADKZ93 diff --git a/content/1_lamps/1_vintage/stay-in-the-car.jpg b/content/1_lamps/1_vintage/stay-in-the-car.jpg new file mode 100644 index 0000000..d8488cf Binary files /dev/null and b/content/1_lamps/1_vintage/stay-in-the-car.jpg differ diff --git a/content/1_lamps/1_vintage/stay-in-the-car.jpg.txt b/content/1_lamps/1_vintage/stay-in-the-car.jpg.txt new file mode 100644 index 0000000..b9effe3 --- /dev/null +++ b/content/1_lamps/1_vintage/stay-in-the-car.jpg.txt @@ -0,0 +1,29 @@ +Caption: Aurora Weave guiding a late-night return with a mellow amber glow. + +---- + +Alt: Aurora Weave pendant shimmering through twilight tones + +---- + +Photographer: Lichterei Studio + +---- + +License: Courtesy of Lichterei + +---- + +Link: + +---- + +Template: image + +---- + +Sort: 5 + +---- + +Uuid: Qb0tGC63X1pU3qH1 diff --git a/content/1_lamps/2_sky/album.txt b/content/1_lamps/2_sky/album.txt new file mode 100644 index 0000000..31de552 --- /dev/null +++ b/content/1_lamps/2_sky/album.txt @@ -0,0 +1,25 @@ +Title: Skylark Halo Pendant + +---- + +Cover: - file://9APZDUNsDTbHMMTZ + +---- + +Headline: Circular glow that floats like dawn + +---- + +Subheadline: Brushed aluminium ring layered with opal diffusers + +---- + +Text:Skylark Halo levitates on near-invisible suspension, its twin opal diffusers projecting a soft horizon line. Adjustable co-axial LEDs let you move from sunrise to starlight with a single gesture.
The pendant thrives above lounge sofas and dining tables, pairing architectural clarity with a weightless presence that keeps conversations in the spotlight.
+ +---- + +Tags: pendant, halo, dimmable + +---- + +Uuid: EWQEPJBB2Xyrrrj6 diff --git a/content/1_lamps/2_sky/blood-moon.jpg b/content/1_lamps/2_sky/blood-moon.jpg new file mode 100644 index 0000000..1b48880 Binary files /dev/null and b/content/1_lamps/2_sky/blood-moon.jpg differ diff --git a/content/1_lamps/2_sky/blood-moon.jpg.txt b/content/1_lamps/2_sky/blood-moon.jpg.txt new file mode 100644 index 0000000..dd4e08a --- /dev/null +++ b/content/1_lamps/2_sky/blood-moon.jpg.txt @@ -0,0 +1,29 @@ +Caption: Skylark Halo suspended above a lounge, glowing like a rising moon. + +---- + +Alt: Skylark Halo pendant floating with amber outer ring + +---- + +Photographer: Lichterei Studio + +---- + +License: Courtesy of Lichterei + +---- + +Link: + +---- + +Template: image + +---- + +Sort: 1 + +---- + +Uuid: kUpBxXRb6As5AI4Q diff --git a/content/1_lamps/2_sky/coconut-milkyway.jpg b/content/1_lamps/2_sky/coconut-milkyway.jpg new file mode 100644 index 0000000..496f502 Binary files /dev/null and b/content/1_lamps/2_sky/coconut-milkyway.jpg differ diff --git a/content/1_lamps/2_sky/coconut-milkyway.jpg.txt b/content/1_lamps/2_sky/coconut-milkyway.jpg.txt new file mode 100644 index 0000000..f418679 --- /dev/null +++ b/content/1_lamps/2_sky/coconut-milkyway.jpg.txt @@ -0,0 +1,25 @@ +Caption: Diffused inner glow of Skylark Halo reflecting off matte plaster. + +---- + +Alt: Close-up of Skylark Halo pendant with dual diffusion rings + +---- + +Photographer: Lichterei Studio + +---- + +License: Courtesy of Lichterei + +---- + +Link: + +---- + +Template: image + +---- + +Uuid: qQdp74eJyZtSsN04 diff --git a/content/1_lamps/2_sky/dark-forest.jpg b/content/1_lamps/2_sky/dark-forest.jpg new file mode 100644 index 0000000..c3e8968 Binary files /dev/null and b/content/1_lamps/2_sky/dark-forest.jpg differ diff --git a/content/1_lamps/2_sky/dark-forest.jpg.txt b/content/1_lamps/2_sky/dark-forest.jpg.txt new file mode 100644 index 0000000..5052746 --- /dev/null +++ b/content/1_lamps/2_sky/dark-forest.jpg.txt @@ -0,0 +1,29 @@ +Caption: Skylark Halo washing a vaulted ceiling with soft starlight hues. + +---- + +Alt: Skylark Halo pendant illuminating a vaulted ceiling + +---- + +Photographer: Lichterei Studio + +---- + +License: Courtesy of Lichterei + +---- + +Link: + +---- + +Template: image + +---- + +Sort: 4 + +---- + +Uuid: 9APZDUNsDTbHMMTZ diff --git a/content/1_lamps/2_sky/desert-tree.jpg b/content/1_lamps/2_sky/desert-tree.jpg new file mode 100644 index 0000000..fa762ee Binary files /dev/null and b/content/1_lamps/2_sky/desert-tree.jpg differ diff --git a/content/1_lamps/2_sky/desert-tree.jpg.txt b/content/1_lamps/2_sky/desert-tree.jpg.txt new file mode 100644 index 0000000..9f1a9bb --- /dev/null +++ b/content/1_lamps/2_sky/desert-tree.jpg.txt @@ -0,0 +1,29 @@ +Caption: Skylark Halo echoing twilight across an open-layout living room. + +---- + +Alt: Skylark Halo pendant emitting a gradient of warm and cool light + +---- + +Photographer: Lichterei Studio + +---- + +License: Courtesy of Lichterei + +---- + +Link: + +---- + +Template: image + +---- + +Sort: 3 + +---- + +Uuid: QpaDWZ8W1hy2JAsd diff --git a/content/1_lamps/2_sky/tent-in-the-woods.jpg b/content/1_lamps/2_sky/tent-in-the-woods.jpg new file mode 100644 index 0000000..377299d Binary files /dev/null and b/content/1_lamps/2_sky/tent-in-the-woods.jpg differ diff --git a/content/1_lamps/2_sky/tent-in-the-woods.jpg.txt b/content/1_lamps/2_sky/tent-in-the-woods.jpg.txt new file mode 100644 index 0000000..aaf7bcd --- /dev/null +++ b/content/1_lamps/2_sky/tent-in-the-woods.jpg.txt @@ -0,0 +1,25 @@ +Caption: Skylark Halo dimmed low to frame a fireside gathering. + +---- + +Alt: Skylark Halo pendant glowing softly above lounge seating + +---- + +Photographer: Lichterei Studio + +---- + +License: Courtesy of Lichterei + +---- + +Link: + +---- + +Template: image + +---- + +Uuid: ofXkD4gdgBOkHBAb diff --git a/content/1_lamps/3_ocean/album.txt b/content/1_lamps/3_ocean/album.txt new file mode 100644 index 0000000..0c14638 --- /dev/null +++ b/content/1_lamps/3_ocean/album.txt @@ -0,0 +1,25 @@ +Title: Tidefall Floor Lamp + +---- + +Cover: - file://Kxk9ITpo07vV6u3e + +---- + +Headline: Cascading linen for atmosphere seekers + +---- + +Subheadline: Tiered textile shade with ripple dimming + +---- + +Text:Tidefall is a sculpted column of cascading linen, layered to echo the movement of falling water. Its integrated dimming ribbon washes the seams in luminous gradients, perfect for softening corners and anchoring lounge seating.
The base is turned from reclaimed ash, grounding the lamp with a tactile warmth that invites barefoot evenings and long playlists.
+ +---- + +Tags: floor lamp, textile, ambient + +---- + +Uuid: D4DuOwcJk0fL0twA diff --git a/content/1_lamps/3_ocean/attention-sharks.jpg b/content/1_lamps/3_ocean/attention-sharks.jpg new file mode 100644 index 0000000..2a45d45 Binary files /dev/null and b/content/1_lamps/3_ocean/attention-sharks.jpg differ diff --git a/content/1_lamps/3_ocean/attention-sharks.jpg.txt b/content/1_lamps/3_ocean/attention-sharks.jpg.txt new file mode 100644 index 0000000..f6a0d79 --- /dev/null +++ b/content/1_lamps/3_ocean/attention-sharks.jpg.txt @@ -0,0 +1,25 @@ +Caption: Tidefall Floor Lamp pouring layered light beside a velvet sofa. + +---- + +Alt: Tidefall floor lamp casting ripples of warm light + +---- + +Photographer: Lichterei Studio + +---- + +License: Courtesy of Lichterei + +---- + +Link: + +---- + +Template: image + +---- + +Uuid: 0pQGdoX7b4QuEqhl diff --git a/content/1_lamps/3_ocean/island-from-above.jpg b/content/1_lamps/3_ocean/island-from-above.jpg new file mode 100644 index 0000000..8c0d91a Binary files /dev/null and b/content/1_lamps/3_ocean/island-from-above.jpg differ diff --git a/content/1_lamps/3_ocean/island-from-above.jpg.txt b/content/1_lamps/3_ocean/island-from-above.jpg.txt new file mode 100644 index 0000000..128ec7e --- /dev/null +++ b/content/1_lamps/3_ocean/island-from-above.jpg.txt @@ -0,0 +1,29 @@ +Caption: Tidefall's layered linen shade viewed from above. + +---- + +Alt: Top view of Tidefall floor lamp with concentric textile tiers + +---- + +Photographer: Lichterei Studio + +---- + +License: Courtesy of Lichterei + +---- + +Link: + +---- + +Template: image + +---- + +Sort: 1 + +---- + +Uuid: Kxk9ITpo07vV6u3e diff --git a/content/1_lamps/3_ocean/jellyfish.jpg b/content/1_lamps/3_ocean/jellyfish.jpg new file mode 100644 index 0000000..a12fa01 Binary files /dev/null and b/content/1_lamps/3_ocean/jellyfish.jpg differ diff --git a/content/1_lamps/3_ocean/jellyfish.jpg.txt b/content/1_lamps/3_ocean/jellyfish.jpg.txt new file mode 100644 index 0000000..92097fa --- /dev/null +++ b/content/1_lamps/3_ocean/jellyfish.jpg.txt @@ -0,0 +1,29 @@ +Caption: Tidefall's cascading linen evokes bioluminescent drifts at sea. + +---- + +Alt: Tidefall floor lamp with translucent linen layers aglow + +---- + +Photographer: Lichterei Studio + +---- + +License: Courtesy of Lichterei + +---- + +Link: + +---- + +Template: image + +---- + +Sort: 3 + +---- + +Uuid: bUbLFbPgBpL51DSp diff --git a/content/1_lamps/3_ocean/nasty-rocks.jpg b/content/1_lamps/3_ocean/nasty-rocks.jpg new file mode 100644 index 0000000..75b4177 Binary files /dev/null and b/content/1_lamps/3_ocean/nasty-rocks.jpg differ diff --git a/content/1_lamps/3_ocean/nasty-rocks.jpg.txt b/content/1_lamps/3_ocean/nasty-rocks.jpg.txt new file mode 100644 index 0000000..cecea36 --- /dev/null +++ b/content/1_lamps/3_ocean/nasty-rocks.jpg.txt @@ -0,0 +1,29 @@ +Caption: Tidefall dimmed low to frame a stone fireplace vignette. + +---- + +Alt: Tidefall floor lamp beside textured stone wall + +---- + +Photographer: Lichterei Studio + +---- + +License: Courtesy of Lichterei + +---- + +Link: + +---- + +Template: image + +---- + +Sort: 2 + +---- + +Uuid: GPuhd1glEC35U9k1 diff --git a/content/1_lamps/3_ocean/smashed-by-waves.jpg b/content/1_lamps/3_ocean/smashed-by-waves.jpg new file mode 100644 index 0000000..76587a6 Binary files /dev/null and b/content/1_lamps/3_ocean/smashed-by-waves.jpg differ diff --git a/content/1_lamps/3_ocean/smashed-by-waves.jpg.txt b/content/1_lamps/3_ocean/smashed-by-waves.jpg.txt new file mode 100644 index 0000000..5fcaa26 --- /dev/null +++ b/content/1_lamps/3_ocean/smashed-by-waves.jpg.txt @@ -0,0 +1,29 @@ +Caption: Tidefall embracing the curve of an arched reading niche. + +---- + +Alt: Tidefall floor lamp glowing through layered textile shade + +---- + +Photographer: Lichterei Studio + +---- + +License: Courtesy of Lichterei + +---- + +Link: + +---- + +Template: image + +---- + +Sort: 4 + +---- + +Uuid: 9n3HLGrBUs8MZUnB diff --git a/content/1_lamps/3_ocean/the-beach.jpg b/content/1_lamps/3_ocean/the-beach.jpg new file mode 100644 index 0000000..d231c2f Binary files /dev/null and b/content/1_lamps/3_ocean/the-beach.jpg differ diff --git a/content/1_lamps/3_ocean/the-beach.jpg.txt b/content/1_lamps/3_ocean/the-beach.jpg.txt new file mode 100644 index 0000000..b26cb09 --- /dev/null +++ b/content/1_lamps/3_ocean/the-beach.jpg.txt @@ -0,0 +1,25 @@ +Caption: Tidefall greeting guests with a gentle welcome wash. + +---- + +Alt: Tidefall floor lamp illuminating an entryway bench + +---- + +Photographer: Lichterei Studio + +---- + +License: Courtesy of Lichterei + +---- + +Link: + +---- + +Template: image + +---- + +Uuid: o3d9HlDINEzeJvp8 diff --git a/content/1_lamps/4_desert/album.txt b/content/1_lamps/4_desert/album.txt new file mode 100644 index 0000000..6641dd9 --- /dev/null +++ b/content/1_lamps/4_desert/album.txt @@ -0,0 +1,25 @@ +Title: Dune Loom Lantern + +---- + +Cover: - file://TcCivi92OPvsiwka + +---- + +Headline: Sculptural wall light with woven depth + +---- + +Subheadline: Clay-toned lattice cradling opal glass + +---- + +Text:Dune Loom wraps hand-dyed jute around a frosted opal core, melding artisanal craft with a gentle, architectural presence. The lantern throws a crescent of light upward and down, perfect for layering ambience in living rooms and hallways.
Each piece is sealed with breathable clay pigment, giving the fixture a sun-baked warmth that feels both grounded and indulgent.
+ +---- + +Tags: wall light, woven, accent + +---- + +Uuid: w8ymxqAzqTvYkHJ4 diff --git a/content/1_lamps/4_desert/area-51.jpg b/content/1_lamps/4_desert/area-51.jpg new file mode 100644 index 0000000..4c727c0 Binary files /dev/null and b/content/1_lamps/4_desert/area-51.jpg differ diff --git a/content/1_lamps/4_desert/area-51.jpg.txt b/content/1_lamps/4_desert/area-51.jpg.txt new file mode 100644 index 0000000..49f31e6 --- /dev/null +++ b/content/1_lamps/4_desert/area-51.jpg.txt @@ -0,0 +1,29 @@ +Caption: Dune Loom Lantern tracing soft halos across clay plaster. + +---- + +Alt: Dune Loom wall lamp glowing against textured clay + +---- + +Photographer: Lichterei Studio + +---- + +License: Courtesy of Lichterei + +---- + +Link: + +---- + +Template: image + +---- + +Sort: 1 + +---- + +Uuid: oe7VNInWgLwgKYOZ diff --git a/content/1_lamps/4_desert/death-trap.jpg b/content/1_lamps/4_desert/death-trap.jpg new file mode 100644 index 0000000..6fc1726 Binary files /dev/null and b/content/1_lamps/4_desert/death-trap.jpg differ diff --git a/content/1_lamps/4_desert/death-trap.jpg.txt b/content/1_lamps/4_desert/death-trap.jpg.txt new file mode 100644 index 0000000..13c7ab2 --- /dev/null +++ b/content/1_lamps/4_desert/death-trap.jpg.txt @@ -0,0 +1,29 @@ +Caption: Dune Loom's wrapped fibres reveal their hand-braided origins. + +---- + +Alt: Close detail of Dune Loom Lantern's jute lattice + +---- + +Photographer: Lichterei Studio + +---- + +License: Courtesy of Lichterei + +---- + +Link: + +---- + +Template: image + +---- + +Sort: 5 + +---- + +Uuid: 1R9Haswet76cNlUB diff --git a/content/1_lamps/4_desert/dune.jpg b/content/1_lamps/4_desert/dune.jpg new file mode 100644 index 0000000..e36960c Binary files /dev/null and b/content/1_lamps/4_desert/dune.jpg differ diff --git a/content/1_lamps/4_desert/dune.jpg.txt b/content/1_lamps/4_desert/dune.jpg.txt new file mode 100644 index 0000000..c71a58b --- /dev/null +++ b/content/1_lamps/4_desert/dune.jpg.txt @@ -0,0 +1,29 @@ +Caption: Dune Loom glowing softly along a textured hallway curve. + +---- + +Alt: Dune Loom Lantern illuminating an arched corridor + +---- + +Photographer: Lichterei Studio + +---- + +License: Courtesy of Lichterei + +---- + +Link: + +---- + +Template: image + +---- + +Sort: 2 + +---- + +Uuid: i8yimrGbe132VGr5 diff --git a/content/1_lamps/4_desert/indiana-jones.jpg b/content/1_lamps/4_desert/indiana-jones.jpg new file mode 100644 index 0000000..f4ebe6a Binary files /dev/null and b/content/1_lamps/4_desert/indiana-jones.jpg differ diff --git a/content/1_lamps/4_desert/indiana-jones.jpg.txt b/content/1_lamps/4_desert/indiana-jones.jpg.txt new file mode 100644 index 0000000..6ba3c83 --- /dev/null +++ b/content/1_lamps/4_desert/indiana-jones.jpg.txt @@ -0,0 +1,29 @@ +Caption: Light spilling from Dune Loom paints the wall like desert sunlight. + +---- + +Alt: Dune Loom Lantern sending warm beams across a wall + +---- + +Photographer: Lichterei Studio + +---- + +License: Courtesy of Lichterei + +---- + +Link: + +---- + +Template: image + +---- + +Sort: 3 + +---- + +Uuid: TcCivi92OPvsiwka diff --git a/content/1_lamps/4_desert/water-please.jpg b/content/1_lamps/4_desert/water-please.jpg new file mode 100644 index 0000000..e9e2695 Binary files /dev/null and b/content/1_lamps/4_desert/water-please.jpg differ diff --git a/content/1_lamps/4_desert/water-please.jpg.txt b/content/1_lamps/4_desert/water-please.jpg.txt new file mode 100644 index 0000000..ad132bf --- /dev/null +++ b/content/1_lamps/4_desert/water-please.jpg.txt @@ -0,0 +1,29 @@ +Caption: Night scene with Dune Loom guiding guests with a soft glow. + +---- + +Alt: Dune Loom Lantern casting crescent light during evening + +---- + +Photographer: Lichterei Studio + +---- + +License: Courtesy of Lichterei + +---- + +Link: + +---- + +Template: image + +---- + +Sort: 4 + +---- + +Uuid: 6rSAbkLtovvdhS2E diff --git a/content/1_lamps/5_mountains/album.txt b/content/1_lamps/5_mountains/album.txt new file mode 100644 index 0000000..af4732c --- /dev/null +++ b/content/1_lamps/5_mountains/album.txt @@ -0,0 +1,25 @@ +Title: Summit Ember Chandelier + +---- + +Cover: - file://PHRV0Y0YkDOf7Cdc + +---- + +Headline: Layered tiers sculpted for social heights + +---- + +Subheadline: Forged steel arms with smoked glass globes + +---- + +Text:Summit Ember anchors rooms with a sculptural canopy of forged steel, offset by smoked glass globes that glow like embers. Its multi-tiered composition spreads light evenly, ideal for lofted living rooms and dining stages.
Dim-to-amber modules soften the atmosphere for late-night conversations while keeping the chandelier's silhouette crisp and architectural.
+ +---- + +Tags: chandelier, statement, living room + +---- + +Uuid: XqbutgSsL5ibgjxP diff --git a/content/1_lamps/5_mountains/climbers-are-crazy.jpg b/content/1_lamps/5_mountains/climbers-are-crazy.jpg new file mode 100644 index 0000000..bddcc20 Binary files /dev/null and b/content/1_lamps/5_mountains/climbers-are-crazy.jpg differ diff --git a/content/1_lamps/5_mountains/climbers-are-crazy.jpg.txt b/content/1_lamps/5_mountains/climbers-are-crazy.jpg.txt new file mode 100644 index 0000000..4556265 --- /dev/null +++ b/content/1_lamps/5_mountains/climbers-are-crazy.jpg.txt @@ -0,0 +1,29 @@ +Caption: Summit Ember chandelier staged above a stone coffee table. + +---- + +Alt: Summit Ember chandelier illuminating sculpted stone furniture + +---- + +Photographer: Lichterei Studio + +---- + +License: Courtesy of Lichterei + +---- + +Link: + +---- + +Template: image + +---- + +Sort: 1 + +---- + +Uuid: G8fDPmaJBTPAYPX6 diff --git a/content/1_lamps/5_mountains/non-potable.jpg b/content/1_lamps/5_mountains/non-potable.jpg new file mode 100644 index 0000000..15f6871 Binary files /dev/null and b/content/1_lamps/5_mountains/non-potable.jpg differ diff --git a/content/1_lamps/5_mountains/non-potable.jpg.txt b/content/1_lamps/5_mountains/non-potable.jpg.txt new file mode 100644 index 0000000..14bba38 --- /dev/null +++ b/content/1_lamps/5_mountains/non-potable.jpg.txt @@ -0,0 +1,29 @@ +Caption: Summit Ember's warm cascade mirrored in a glass partition. + +---- + +Alt: Summit Ember chandelier reflecting in a dark glass wall + +---- + +Photographer: Lichterei Studio + +---- + +License: Courtesy of Lichterei + +---- + +Link: + +---- + +Template: image + +---- + +Sort: 2 + +---- + +Uuid: VI8RHCHCnTx1ygYK diff --git a/content/1_lamps/5_mountains/probably-photoshopped.jpg b/content/1_lamps/5_mountains/probably-photoshopped.jpg new file mode 100644 index 0000000..bef64e5 Binary files /dev/null and b/content/1_lamps/5_mountains/probably-photoshopped.jpg differ diff --git a/content/1_lamps/5_mountains/probably-photoshopped.jpg.txt b/content/1_lamps/5_mountains/probably-photoshopped.jpg.txt new file mode 100644 index 0000000..b023857 --- /dev/null +++ b/content/1_lamps/5_mountains/probably-photoshopped.jpg.txt @@ -0,0 +1,29 @@ +Caption: Summit Ember sketched against a twilight-toned ceiling. + +---- + +Alt: Summit Ember chandelier silhouetted against moody ceiling + +---- + +Photographer: Lichterei Studio + +---- + +License: Courtesy of Lichterei + +---- + +Link: + +---- + +Template: image + +---- + +Sort: 3 + +---- + +Uuid: PHRV0Y0YkDOf7Cdc diff --git a/content/1_lamps/5_mountains/that-apple-mountain.jpg b/content/1_lamps/5_mountains/that-apple-mountain.jpg new file mode 100644 index 0000000..28d3202 Binary files /dev/null and b/content/1_lamps/5_mountains/that-apple-mountain.jpg differ diff --git a/content/1_lamps/5_mountains/that-apple-mountain.jpg.txt b/content/1_lamps/5_mountains/that-apple-mountain.jpg.txt new file mode 100644 index 0000000..b302553 --- /dev/null +++ b/content/1_lamps/5_mountains/that-apple-mountain.jpg.txt @@ -0,0 +1,29 @@ +Caption: Summit Ember's globes emitting ember-like highlights. + +---- + +Alt: Detail of Summit Ember chandelier's smoked glass sphere + +---- + +Photographer: Lichterei Studio + +---- + +License: Courtesy of Lichterei + +---- + +Link: + +---- + +Template: image + +---- + +Sort: 4 + +---- + +Uuid: fWxKEZqZZp27Zmsb diff --git a/content/1_lamps/5_mountains/trees-and-another-mountain.jpg b/content/1_lamps/5_mountains/trees-and-another-mountain.jpg new file mode 100644 index 0000000..c41a528 Binary files /dev/null and b/content/1_lamps/5_mountains/trees-and-another-mountain.jpg differ diff --git a/content/1_lamps/5_mountains/trees-and-another-mountain.jpg.txt b/content/1_lamps/5_mountains/trees-and-another-mountain.jpg.txt new file mode 100644 index 0000000..c608fed --- /dev/null +++ b/content/1_lamps/5_mountains/trees-and-another-mountain.jpg.txt @@ -0,0 +1,29 @@ +Caption: Summit Ember anchoring a double-height living room vignette. + +---- + +Alt: Summit Ember chandelier hanging in a tall living room + +---- + +Photographer: Lichterei Studio + +---- + +License: Courtesy of Lichterei + +---- + +Link: + +---- + +Template: image + +---- + +Sort: 5 + +---- + +Uuid: p8iAVxYBqkjR8eAA diff --git a/content/1_lamps/6_waterfall/album.txt b/content/1_lamps/6_waterfall/album.txt new file mode 100644 index 0000000..ce487fe --- /dev/null +++ b/content/1_lamps/6_waterfall/album.txt @@ -0,0 +1,25 @@ +Title: Cascade Veil Column + +---- + +Cover: - file://KwkXlLQwSJP3JhYI + +---- + +Headline: Vertical ribbons of luminescence + +---- + +Subheadline: Etched glass fins with programmable warmth + +---- + +Text:Cascade Veil rises as a slender column of etched glass fins, each one channeling light into a gentle shimmer. The programmable warm-to-neutral spectrum lets you match the lamp to the mood of your music or evening ritual.
The base remains discreet, allowing the illuminated ribbons to take centre stage beside sofas, in entry halls, or tucked between bookshelves.
+ +---- + +Tags: column, floor lamp, programmable + +---- + +Uuid: Ne4eXh9gk3SPWsxu diff --git a/content/1_lamps/6_waterfall/could-be-hawaii.jpg b/content/1_lamps/6_waterfall/could-be-hawaii.jpg new file mode 100644 index 0000000..88ef49f Binary files /dev/null and b/content/1_lamps/6_waterfall/could-be-hawaii.jpg differ diff --git a/content/1_lamps/6_waterfall/could-be-hawaii.jpg.txt b/content/1_lamps/6_waterfall/could-be-hawaii.jpg.txt new file mode 100644 index 0000000..a7e15ac --- /dev/null +++ b/content/1_lamps/6_waterfall/could-be-hawaii.jpg.txt @@ -0,0 +1,25 @@ +Caption: Cascade Veil Column anchoring a lounge with vertical shimmer. + +---- + +Alt: Cascade Veil column lamp beside a lounge chair + +---- + +Photographer: Lichterei Studio + +---- + +License: Courtesy of Lichterei + +---- + +Link: + +---- + +Template: image + +---- + +Uuid: zCSNdxdxQLv7v90m diff --git a/content/1_lamps/6_waterfall/lots-of-water.jpg b/content/1_lamps/6_waterfall/lots-of-water.jpg new file mode 100644 index 0000000..7124ddc Binary files /dev/null and b/content/1_lamps/6_waterfall/lots-of-water.jpg differ diff --git a/content/1_lamps/6_waterfall/lots-of-water.jpg.txt b/content/1_lamps/6_waterfall/lots-of-water.jpg.txt new file mode 100644 index 0000000..c0b2f19 --- /dev/null +++ b/content/1_lamps/6_waterfall/lots-of-water.jpg.txt @@ -0,0 +1,25 @@ +Caption: Cascade Veil catching light across overlapping glass fins. + +---- + +Alt: Detail of Cascade Veil column lamp's layered glass + +---- + +Photographer: Lichterei Studio + +---- + +License: Courtesy of Lichterei + +---- + +Link: + +---- + +Template: image + +---- + +Uuid: ypnar0L4JLSOhyzI diff --git a/content/1_lamps/6_waterfall/maybe-iceland.jpg b/content/1_lamps/6_waterfall/maybe-iceland.jpg new file mode 100644 index 0000000..7a76eec Binary files /dev/null and b/content/1_lamps/6_waterfall/maybe-iceland.jpg differ diff --git a/content/1_lamps/6_waterfall/maybe-iceland.jpg.txt b/content/1_lamps/6_waterfall/maybe-iceland.jpg.txt new file mode 100644 index 0000000..d309b9b --- /dev/null +++ b/content/1_lamps/6_waterfall/maybe-iceland.jpg.txt @@ -0,0 +1,25 @@ +Caption: Cascade Veil diffusing a misty glow throughout a music lounge. + +---- + +Alt: Cascade Veil column lamp illuminating a music lounge + +---- + +Photographer: Lichterei Studio + +---- + +License: Courtesy of Lichterei + +---- + +Link: + +---- + +Template: image + +---- + +Uuid: EL2AU2LNatipeWPl diff --git a/content/1_lamps/6_waterfall/not-niagra.jpg b/content/1_lamps/6_waterfall/not-niagra.jpg new file mode 100644 index 0000000..0682f8c Binary files /dev/null and b/content/1_lamps/6_waterfall/not-niagra.jpg differ diff --git a/content/1_lamps/6_waterfall/not-niagra.jpg.txt b/content/1_lamps/6_waterfall/not-niagra.jpg.txt new file mode 100644 index 0000000..a8f321c --- /dev/null +++ b/content/1_lamps/6_waterfall/not-niagra.jpg.txt @@ -0,0 +1,25 @@ +Caption: Cascade Veil reflecting soft gradients across stone surfaces. + +---- + +Alt: Cascade Veil column lamp beside textured stone + +---- + +Photographer: Lichterei Studio + +---- + +License: Courtesy of Lichterei + +---- + +Link: + +---- + +Template: image + +---- + +Uuid: ywQvOO1zShxtHb0k diff --git a/content/1_lamps/6_waterfall/the-fall-is-lava.jpg b/content/1_lamps/6_waterfall/the-fall-is-lava.jpg new file mode 100644 index 0000000..239d5f7 Binary files /dev/null and b/content/1_lamps/6_waterfall/the-fall-is-lava.jpg differ diff --git a/content/1_lamps/6_waterfall/the-fall-is-lava.jpg.txt b/content/1_lamps/6_waterfall/the-fall-is-lava.jpg.txt new file mode 100644 index 0000000..070c25e --- /dev/null +++ b/content/1_lamps/6_waterfall/the-fall-is-lava.jpg.txt @@ -0,0 +1,25 @@ +Caption: Cascade Veil turned to ember mode for late-night ambience. + +---- + +Alt: Cascade Veil column lamp glowing with ember-toned gradients + +---- + +Photographer: Lichterei Studio + +---- + +License: Courtesy of Lichterei + +---- + +Link: + +---- + +Template: image + +---- + +Uuid: KwkXlLQwSJP3JhYI diff --git a/content/1_lamps/6_waterfall/twin-peaks.jpg b/content/1_lamps/6_waterfall/twin-peaks.jpg new file mode 100644 index 0000000..19bebc1 Binary files /dev/null and b/content/1_lamps/6_waterfall/twin-peaks.jpg differ diff --git a/content/1_lamps/6_waterfall/twin-peaks.jpg.txt b/content/1_lamps/6_waterfall/twin-peaks.jpg.txt new file mode 100644 index 0000000..5156b3c --- /dev/null +++ b/content/1_lamps/6_waterfall/twin-peaks.jpg.txt @@ -0,0 +1,25 @@ +Caption: Cascade Veil standing beside twin lounge chairs. + +---- + +Alt: Cascade Veil column lamp illuminating paired lounge chairs + +---- + +Photographer: Lichterei Studio + +---- + +License: Courtesy of Lichterei + +---- + +Link: + +---- + +Template: image + +---- + +Uuid: SbAezZovkgdEbopo diff --git a/content/1_lamps/7_plants/album.txt b/content/1_lamps/7_plants/album.txt new file mode 100644 index 0000000..aa395e9 --- /dev/null +++ b/content/1_lamps/7_plants/album.txt @@ -0,0 +1,25 @@ +Title: Botanika Glow Table Lamp + +---- + +Cover: - file://ta7NGtnZzvMSzTEF + +---- + +Headline: Botanical light for intimate corners + +---- + +Subheadline: Mouth-blown glass dome with terracotta base + +---- + +Text:Botanika Glow brings the garden indoors with a gentle dome of mouth-blown glass perched on a terracotta base. The nested LED tray allows foliage-inspired patterns to diffuse across nearby walls.
Its modest footprint makes it ideal for side tables, consoles, and window sills, inviting calm while accenting curated objects.
+ +---- + +Tags: table lamp, glass, cosy + +---- + +Uuid: wAgKEa9FhpZ5mTMG diff --git a/content/1_lamps/7_plants/between-the-ferns.jpg b/content/1_lamps/7_plants/between-the-ferns.jpg new file mode 100644 index 0000000..cf92f41 Binary files /dev/null and b/content/1_lamps/7_plants/between-the-ferns.jpg differ diff --git a/content/1_lamps/7_plants/between-the-ferns.jpg.txt b/content/1_lamps/7_plants/between-the-ferns.jpg.txt new file mode 100644 index 0000000..48da5d5 --- /dev/null +++ b/content/1_lamps/7_plants/between-the-ferns.jpg.txt @@ -0,0 +1,25 @@ +Caption: Botanika Glow casting botanical silhouettes across nearby walls. + +---- + +Alt: Botanika Glow table lamp highlighting fern silhouettes + +---- + +Photographer: Lichterei Studio + +---- + +License: Courtesy of Lichterei + +---- + +Link: + +---- + +Template: image + +---- + +Uuid: JfJDhAS8XTPgtAaf diff --git a/content/1_lamps/7_plants/could-be-poisonous.jpg b/content/1_lamps/7_plants/could-be-poisonous.jpg new file mode 100644 index 0000000..9b445e5 Binary files /dev/null and b/content/1_lamps/7_plants/could-be-poisonous.jpg differ diff --git a/content/1_lamps/7_plants/could-be-poisonous.jpg.txt b/content/1_lamps/7_plants/could-be-poisonous.jpg.txt new file mode 100644 index 0000000..8304fbe --- /dev/null +++ b/content/1_lamps/7_plants/could-be-poisonous.jpg.txt @@ -0,0 +1,25 @@ +Caption: Botanika Glow revealing tinted glass gradients inspired by foliage. + +---- + +Alt: Detail of Botanika Glow lamp's tinted glass dome + +---- + +Photographer: Lichterei Studio + +---- + +License: Courtesy of Lichterei + +---- + +Link: + +---- + +Template: image + +---- + +Uuid: rireqNIOuBwm0JP9 diff --git a/content/1_lamps/7_plants/deadly-snake-hideout.jpg b/content/1_lamps/7_plants/deadly-snake-hideout.jpg new file mode 100644 index 0000000..6b706c8 Binary files /dev/null and b/content/1_lamps/7_plants/deadly-snake-hideout.jpg differ diff --git a/content/1_lamps/7_plants/deadly-snake-hideout.jpg.txt b/content/1_lamps/7_plants/deadly-snake-hideout.jpg.txt new file mode 100644 index 0000000..702740b --- /dev/null +++ b/content/1_lamps/7_plants/deadly-snake-hideout.jpg.txt @@ -0,0 +1,25 @@ +Caption: Botanika Glow table lamp after a misting session in the studio. + +---- + +Alt: Botanika Glow lamp dome with dewy reflections + +---- + +Photographer: Lichterei Studio + +---- + +License: Courtesy of Lichterei + +---- + +Link: + +---- + +Template: image + +---- + +Uuid: J9nD5vVe6kNTjN6G diff --git a/content/1_lamps/7_plants/nice-colors-ugly-plant.jpg b/content/1_lamps/7_plants/nice-colors-ugly-plant.jpg new file mode 100644 index 0000000..6c5ae51 Binary files /dev/null and b/content/1_lamps/7_plants/nice-colors-ugly-plant.jpg differ diff --git a/content/1_lamps/7_plants/nice-colors-ugly-plant.jpg.txt b/content/1_lamps/7_plants/nice-colors-ugly-plant.jpg.txt new file mode 100644 index 0000000..a92c3cf --- /dev/null +++ b/content/1_lamps/7_plants/nice-colors-ugly-plant.jpg.txt @@ -0,0 +1,25 @@ +Caption: Botanika Glow blending with hand-selected succulents on a shelf. + +---- + +Alt: Botanika Glow lamp illuminating sculptural succulents + +---- + +Photographer: Lichterei Studio + +---- + +License: Courtesy of Lichterei + +---- + +Link: + +---- + +Template: image + +---- + +Uuid: ta7NGtnZzvMSzTEF diff --git a/content/1_lamps/7_plants/no-idea-what-that-is.jpg b/content/1_lamps/7_plants/no-idea-what-that-is.jpg new file mode 100644 index 0000000..d1ba75d Binary files /dev/null and b/content/1_lamps/7_plants/no-idea-what-that-is.jpg differ diff --git a/content/1_lamps/7_plants/no-idea-what-that-is.jpg.txt b/content/1_lamps/7_plants/no-idea-what-that-is.jpg.txt new file mode 100644 index 0000000..cb754f0 --- /dev/null +++ b/content/1_lamps/7_plants/no-idea-what-that-is.jpg.txt @@ -0,0 +1,25 @@ +Caption: Botanika Glow's terracotta base perched among curated objects. + +---- + +Alt: Close-up of Botanika Glow lamp base and curated decor + +---- + +Photographer: Lichterei Studio + +---- + +License: Courtesy of Lichterei + +---- + +Link: + +---- + +Template: image + +---- + +Uuid: 0QpycMSjftE9nh4q diff --git a/content/1_lamps/8_landscape/album.txt b/content/1_lamps/8_landscape/album.txt new file mode 100644 index 0000000..d50f3b9 --- /dev/null +++ b/content/1_lamps/8_landscape/album.txt @@ -0,0 +1,25 @@ +Title: Horizon Hush Wall Light + +---- + +Cover: - file://oQRCHqkIUNESUPJp + +---- + +Headline: Ambient line light for layered comfort + +---- + +Subheadline: Powder-coated rail with fabric diffuser + +---- + +Text:Horizon Hush spans the wall as a slender, fabric-faced rail that emits a barely-there glow. The linear fixture can be mounted horizontally or vertically, making it a flexible companion for sofas, hallways, or reading corners.
A magnetic diffuser allows easy access to the smart lighting engine, ensuring the ambience always matches the soundtrack.
+ +---- + +Tags: wall light, linear, ambient + +---- + +Uuid: PjvoKxwSNH1m9vjC diff --git a/content/1_lamps/8_landscape/clouds-eat-mountain.jpg b/content/1_lamps/8_landscape/clouds-eat-mountain.jpg new file mode 100644 index 0000000..d4d8e25 Binary files /dev/null and b/content/1_lamps/8_landscape/clouds-eat-mountain.jpg differ diff --git a/content/1_lamps/8_landscape/clouds-eat-mountain.jpg.txt b/content/1_lamps/8_landscape/clouds-eat-mountain.jpg.txt new file mode 100644 index 0000000..0a0a23c --- /dev/null +++ b/content/1_lamps/8_landscape/clouds-eat-mountain.jpg.txt @@ -0,0 +1,25 @@ +Caption: Horizon Hush tracing a subtle horizon line above timber panelling. + +---- + +Alt: Horizon Hush wall light glowing across timber panelling + +---- + +Photographer: Lichterei Studio + +---- + +License: Courtesy of Lichterei + +---- + +Link: + +---- + +Template: image + +---- + +Uuid: QHkCr8pRTluhzX70 diff --git a/content/1_lamps/8_landscape/dino-poop-mountain.jpg b/content/1_lamps/8_landscape/dino-poop-mountain.jpg new file mode 100644 index 0000000..352f82c Binary files /dev/null and b/content/1_lamps/8_landscape/dino-poop-mountain.jpg differ diff --git a/content/1_lamps/8_landscape/dino-poop-mountain.jpg.txt b/content/1_lamps/8_landscape/dino-poop-mountain.jpg.txt new file mode 100644 index 0000000..deabc3b --- /dev/null +++ b/content/1_lamps/8_landscape/dino-poop-mountain.jpg.txt @@ -0,0 +1,25 @@ +Caption: Horizon Hush wall light curving gently around a reading alcove. + +---- + +Alt: Horizon Hush linear wall lamp wrapping a reading alcove + +---- + +Photographer: Lichterei Studio + +---- + +License: Courtesy of Lichterei + +---- + +Link: + +---- + +Template: image + +---- + +Uuid: IAl9t0J8Xy3XnXxw diff --git a/content/1_lamps/8_landscape/hobbits-and-stuff.jpg b/content/1_lamps/8_landscape/hobbits-and-stuff.jpg new file mode 100644 index 0000000..edd5980 Binary files /dev/null and b/content/1_lamps/8_landscape/hobbits-and-stuff.jpg differ diff --git a/content/1_lamps/8_landscape/hobbits-and-stuff.jpg.txt b/content/1_lamps/8_landscape/hobbits-and-stuff.jpg.txt new file mode 100644 index 0000000..ec9b1c6 --- /dev/null +++ b/content/1_lamps/8_landscape/hobbits-and-stuff.jpg.txt @@ -0,0 +1,25 @@ +Caption: Horizon Hush adding a soft gradient above a console vignette. + +---- + +Alt: Horizon Hush wall light highlighting a console arrangement + +---- + +Photographer: Lichterei Studio + +---- + +License: Courtesy of Lichterei + +---- + +Link: + +---- + +Template: image + +---- + +Uuid: EC7pNvYO0LFdSuHW diff --git a/content/1_lamps/8_landscape/less-water-than-last-year.jpg b/content/1_lamps/8_landscape/less-water-than-last-year.jpg new file mode 100644 index 0000000..5805a8a Binary files /dev/null and b/content/1_lamps/8_landscape/less-water-than-last-year.jpg differ diff --git a/content/1_lamps/8_landscape/less-water-than-last-year.jpg.txt b/content/1_lamps/8_landscape/less-water-than-last-year.jpg.txt new file mode 100644 index 0000000..04612c7 --- /dev/null +++ b/content/1_lamps/8_landscape/less-water-than-last-year.jpg.txt @@ -0,0 +1,25 @@ +Caption: Horizon Hush spanning the length of a hallway. + +---- + +Alt: Horizon Hush wall light guiding a hallway + +---- + +Photographer: Lichterei Studio + +---- + +License: Courtesy of Lichterei + +---- + +Link: + +---- + +Template: image + +---- + +Uuid: uuylPxWZl8MyybAG diff --git a/content/1_lamps/8_landscape/mordor.jpg b/content/1_lamps/8_landscape/mordor.jpg new file mode 100644 index 0000000..5e1f393 Binary files /dev/null and b/content/1_lamps/8_landscape/mordor.jpg differ diff --git a/content/1_lamps/8_landscape/mordor.jpg.txt b/content/1_lamps/8_landscape/mordor.jpg.txt new file mode 100644 index 0000000..c9de62b --- /dev/null +++ b/content/1_lamps/8_landscape/mordor.jpg.txt @@ -0,0 +1,25 @@ +Caption: Horizon Hush at its lowest setting, barely outlining the wall. + +---- + +Alt: Horizon Hush wall light dimmed to a subtle glow + +---- + +Photographer: Lichterei Studio + +---- + +License: Courtesy of Lichterei + +---- + +Link: + +---- + +Template: image + +---- + +Uuid: B1la4J7v249AHeXu diff --git a/content/1_lamps/8_landscape/scary-ridge.jpg b/content/1_lamps/8_landscape/scary-ridge.jpg new file mode 100644 index 0000000..79ee153 Binary files /dev/null and b/content/1_lamps/8_landscape/scary-ridge.jpg differ diff --git a/content/1_lamps/8_landscape/scary-ridge.jpg.txt b/content/1_lamps/8_landscape/scary-ridge.jpg.txt new file mode 100644 index 0000000..e58c3ec --- /dev/null +++ b/content/1_lamps/8_landscape/scary-ridge.jpg.txt @@ -0,0 +1,25 @@ +Caption: Horizon Hush layered through gentle fog from a diffuser. + +---- + +Alt: Horizon Hush wall light glowing through soft haze + +---- + +Photographer: Lichterei Studio + +---- + +License: Courtesy of Lichterei + +---- + +Link: + +---- + +Template: image + +---- + +Uuid: 9UWtZINIn5FrO9If diff --git a/content/1_lamps/8_landscape/that-green-looks-fake.jpg b/content/1_lamps/8_landscape/that-green-looks-fake.jpg new file mode 100644 index 0000000..197586d Binary files /dev/null and b/content/1_lamps/8_landscape/that-green-looks-fake.jpg differ diff --git a/content/1_lamps/8_landscape/that-green-looks-fake.jpg.txt b/content/1_lamps/8_landscape/that-green-looks-fake.jpg.txt new file mode 100644 index 0000000..a8ad9d3 --- /dev/null +++ b/content/1_lamps/8_landscape/that-green-looks-fake.jpg.txt @@ -0,0 +1,25 @@ +Caption: Horizon Hush colouring a lounge wall with gentle gradients. + +---- + +Alt: Horizon Hush wall light washing a lounge wall + +---- + +Photographer: Lichterei Studio + +---- + +License: Courtesy of Lichterei + +---- + +Link: + +---- + +Template: image + +---- + +Uuid: oQRCHqkIUNESUPJp diff --git a/content/1_lamps/photography.de.txt b/content/1_lamps/photography.de.txt new file mode 100644 index 0000000..f06d07d --- /dev/null +++ b/content/1_lamps/photography.de.txt @@ -0,0 +1,5 @@ +Title: Leuchten + +---- + +Uuid: EgfXk155nyUvqqA1 diff --git a/content/1_lamps/photography.en.txt b/content/1_lamps/photography.en.txt new file mode 100644 index 0000000..a1f05fb --- /dev/null +++ b/content/1_lamps/photography.en.txt @@ -0,0 +1,5 @@ +Title: Lamps + +---- + +Uuid: EgfXk155nyUvqqA1 diff --git a/content/home/Lichterei.png b/content/home/Lichterei.png new file mode 100644 index 0000000..ebb06a1 Binary files /dev/null and b/content/home/Lichterei.png differ diff --git a/scripts/publish-image.sh b/scripts/publish-image.sh index 945130f..bcce493 100755 --- a/scripts/publish-image.sh +++ b/scripts/publish-image.sh @@ -14,7 +14,7 @@ DOCKERFILE_PATH="${PROJECT_ROOT}/Dockerfile" REGISTRY_HOST="gitea.mindboost.team" IMAGE_NAME="interkollektives/lichterei-web" -DEFAULT_TAG="0.0.1" +DEFAULT_TAG="0.0.2" if ! command -v docker >/dev/null 2>&1; then echo "Docker is required but not found in PATH." >&2 diff --git a/site/blueprints/site.yml b/site/blueprints/site.yml index 409fd16..c2c1b09 100644 --- a/site/blueprints/site.yml +++ b/site/blueprints/site.yml @@ -30,3 +30,13 @@ columns: - about - home - default + fields: + footerSecretsHeading: + label: Footer secrets heading + type: text + footerSecretOne: + label: Footer secret one + type: text + footerSecretTwo: + label: Footer secret two + type: text diff --git a/site/config/config.dev.php b/site/config/config.dev.php new file mode 100644 index 0000000..d504993 --- /dev/null +++ b/site/config/config.dev.php @@ -0,0 +1,33 @@ + true, + 'yaml.handler' => 'symfony', // already makes use of the more modern Symfony YAML parser: https://getkirby.com/docs/reference/system/options/yaml (will become the default in a future Kirby version) + 'url' => 'http://localhost:8080', + 'panel' => [ + 'install' => true, + 'url' => 'http://localhost:8080', + ], + 'languages' => [ + [ + 'code' => 'de', + 'default' => true, + 'name' => 'Deutsch', + 'locale' => 'de_DE', + 'url' => '/', + ], + [ + 'code' => 'en', + 'name' => 'English', + 'locale' => 'en_US', + 'url' => '/en', + ], + ], +]; diff --git a/site/config/config.php b/site/config/config.php index 5b4fddd..14e2a9a 100644 --- a/site/config/config.php +++ b/site/config/config.php @@ -13,7 +13,7 @@ return [ 'url' => 'https://licht.interkollektiv.es', 'panel' => [ 'install' => true, - 'url' => 'https://licht.interkollektiv.es/panel', + 'url' => 'https://licht.interkollektiv.es', ], 'languages' => [ [ diff --git a/site/snippets/footer.php b/site/snippets/footer.php index 0540f2c..6a77d4c 100644 --- a/site/snippets/footer.php +++ b/site/snippets/footer.php @@ -13,28 +13,46 @@