├── .dockerignore ├── .github ├── DOCS.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── scripts │ ├── ci-verify-build-provide-visual-regression-report.sh │ ├── ci-verify-build-read-report-failures.sh │ ├── ci-verify-docker-image-with-custom-credentials.sh │ ├── dev-journey-1-verify-env.sh │ ├── dev-journey-2-prepare-project-changes.sh │ ├── dev-journey-3-validate-functional-tests.sh │ ├── dev-journey-4-update-functionals.sh │ ├── get-cloud-run-env-name.sh │ └── helper-visual-test-get-report-url.sh ├── signatures │ └── v1 │ │ └── cla.json └── workflows │ ├── ci-test-starter-vs-cms-development.yml │ ├── ci-verify-build.yml │ ├── ci-verify-dev-journey.yml │ ├── env-ephemeral-cleanup.yml │ ├── env-ephemeral-create.yml │ ├── env-ephemeral-destroy.yml │ ├── helper-check-cla.yml │ ├── helper-comment-pr-on-visual-check.yml │ └── release-build-and-publish-images.yml ├── .gitignore ├── .mvn ├── extensions.xml └── wrapper │ └── maven-wrapper.properties ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── COPYRIGHT ├── Dockerfile ├── LICENSE ├── NOTICE.md ├── README.md ├── RELEASING.md ├── applications ├── luna-custom-code │ ├── backend │ │ ├── bnd.bnd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── pl │ │ │ │ │ └── ds │ │ │ │ │ └── luna │ │ │ │ │ ├── components │ │ │ │ │ └── models │ │ │ │ │ │ ├── LunaTitleComponent.java │ │ │ │ │ │ └── package-info.java │ │ │ │ │ └── services │ │ │ │ │ └── AuthRequirementsService.java │ │ │ └── resources │ │ │ │ └── apps │ │ │ │ └── luna │ │ │ │ ├── .content.json │ │ │ │ └── components │ │ │ │ └── lunatitle │ │ │ │ ├── .content.json │ │ │ │ └── lunatitle.html │ │ │ └── test │ │ │ ├── java │ │ │ └── pl │ │ │ │ └── ds │ │ │ │ └── luna │ │ │ │ └── components │ │ │ │ └── models │ │ │ │ └── LunaTitleComponentTest.java │ │ │ └── resources │ │ │ └── title.json │ ├── frontend │ │ ├── .babelrc │ │ ├── .eslintrc.js │ │ ├── .gitignore │ │ ├── assembly.xml │ │ ├── bnd.bnd │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── pom.xml │ │ ├── src │ │ │ ├── author.scss │ │ │ ├── author.ts │ │ │ ├── main.scss │ │ │ ├── main.ts │ │ │ ├── resources │ │ │ │ ├── fonts │ │ │ │ │ └── ds-font │ │ │ │ │ │ ├── ds-iconfonts.eot │ │ │ │ │ │ ├── ds-iconfonts.svg │ │ │ │ │ │ ├── ds-iconfonts.ttf │ │ │ │ │ │ ├── ds-iconfonts.woff │ │ │ │ │ │ └── ds-iconfonts.woff2 │ │ │ │ └── images │ │ │ │ │ ├── broken-image.svg │ │ │ │ │ └── check.svg │ │ │ ├── sass │ │ │ │ ├── abstracts │ │ │ │ │ ├── _colors.scss │ │ │ │ │ ├── _fonts.scss │ │ │ │ │ ├── _icons.scss │ │ │ │ │ ├── _index.scss │ │ │ │ │ ├── _spacing.scss │ │ │ │ │ ├── _variables.scss │ │ │ │ │ └── _zindex.scss │ │ │ │ ├── base │ │ │ │ │ ├── _icons.scss │ │ │ │ │ ├── _index.scss │ │ │ │ │ ├── _reset.scss │ │ │ │ │ └── _typography.scss │ │ │ │ ├── global.scss │ │ │ │ └── theme │ │ │ │ │ └── demo-content-theme.scss │ │ │ └── ts │ │ │ │ ├── constants │ │ │ │ └── breakpoints.ts │ │ │ │ ├── helpers │ │ │ │ ├── glide.ts │ │ │ │ ├── platform.ts │ │ │ │ └── utils.ts │ │ │ │ ├── scrollbar.ts │ │ │ │ └── types │ │ │ │ └── types.d.ts │ │ ├── tsconfig.json │ │ ├── webpack.common.js │ │ └── webpack.prod.js │ └── pom.xml ├── luna-low-code │ ├── backend │ │ ├── bnd.bnd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── pl │ │ │ │ │ └── ds │ │ │ │ │ └── luna │ │ │ │ │ └── lowcode │ │ │ │ │ ├── components │ │ │ │ │ └── models │ │ │ │ │ │ ├── AccordionItemComponent.java │ │ │ │ │ │ ├── CarouselComponent.java │ │ │ │ │ │ ├── CarouselItemComponent.java │ │ │ │ │ │ ├── QuoteComponent.java │ │ │ │ │ │ └── package-info.java │ │ │ │ │ └── services │ │ │ │ │ └── AuthRequirementsService.java │ │ │ └── resources │ │ │ │ └── apps │ │ │ │ └── luna │ │ │ │ └── lowcode │ │ │ │ ├── .content.json │ │ │ │ ├── components │ │ │ │ ├── accordion │ │ │ │ │ ├── .content.json │ │ │ │ │ ├── accordion.html │ │ │ │ │ ├── accordioncontent │ │ │ │ │ │ ├── .content.json │ │ │ │ │ │ └── accordioncontent.html │ │ │ │ │ ├── accordionitem │ │ │ │ │ │ ├── .content.json │ │ │ │ │ │ ├── accordionitem.html │ │ │ │ │ │ ├── dialog │ │ │ │ │ │ │ └── .content.json │ │ │ │ │ │ └── template │ │ │ │ │ │ │ └── .content.json │ │ │ │ │ └── template │ │ │ │ │ │ └── .content.json │ │ │ │ ├── carousel │ │ │ │ │ ├── .content.json │ │ │ │ │ ├── carousel.html │ │ │ │ │ ├── carouselitem │ │ │ │ │ │ ├── .content.json │ │ │ │ │ │ ├── carouselitem.html │ │ │ │ │ │ └── template │ │ │ │ │ │ │ └── .content.json │ │ │ │ │ ├── dialog │ │ │ │ │ │ └── .content.json │ │ │ │ │ └── template │ │ │ │ │ │ └── .content.json │ │ │ │ ├── page │ │ │ │ │ ├── .content.json │ │ │ │ │ └── head-project-libs.html │ │ │ │ └── quote │ │ │ │ │ ├── .content.json │ │ │ │ │ ├── dialog │ │ │ │ │ └── .content.json │ │ │ │ │ └── quote.html │ │ │ │ ├── policies │ │ │ │ └── .content.json │ │ │ │ └── templates │ │ │ │ ├── articlepage │ │ │ │ ├── .content.json │ │ │ │ ├── initial │ │ │ │ │ └── .content.json │ │ │ │ └── policies │ │ │ │ │ └── .content.json │ │ │ │ ├── homepage │ │ │ │ ├── .content.json │ │ │ │ ├── initial │ │ │ │ │ └── .content.json │ │ │ │ └── policies │ │ │ │ │ └── .content.json │ │ │ │ └── pagesspace │ │ │ │ └── .content.json │ │ │ └── test │ │ │ ├── java │ │ │ └── pl │ │ │ │ └── ds │ │ │ │ └── luna │ │ │ │ └── lowcode │ │ │ │ └── components │ │ │ │ └── models │ │ │ │ ├── AccordionItemComponentTest.java │ │ │ │ ├── CarouselComponentTest.java │ │ │ │ ├── CarouselItemComponentTest.java │ │ │ │ └── QuoteComponentTest.java │ │ │ └── resources │ │ │ ├── accordionitem.json │ │ │ ├── carousel.json │ │ │ ├── carouselitem.json │ │ │ └── quote.json │ ├── frontend │ │ ├── .babelrc │ │ ├── .eslintrc.js │ │ ├── .gitignore │ │ ├── assembly.xml │ │ ├── bnd.bnd │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── pom.xml │ │ ├── src │ │ │ ├── _css-variables.scss │ │ │ ├── components │ │ │ │ ├── Accordion │ │ │ │ │ ├── accordion.scss │ │ │ │ │ └── accordion.ts │ │ │ │ ├── Carousel │ │ │ │ │ ├── carousel.scss │ │ │ │ │ └── carousel.ts │ │ │ │ ├── Footer │ │ │ │ │ └── footer.scss │ │ │ │ ├── Navbar │ │ │ │ │ └── navbar.scss │ │ │ │ ├── Quote │ │ │ │ │ └── quote.scss │ │ │ │ └── SocialLinks │ │ │ │ │ └── social-links.scss │ │ │ ├── main.scss │ │ │ ├── main.ts │ │ │ ├── sass │ │ │ │ ├── abstracts │ │ │ │ │ ├── _fonts.scss │ │ │ │ │ └── _index.scss │ │ │ │ ├── base │ │ │ │ │ ├── _index.scss │ │ │ │ │ └── _typography.scss │ │ │ │ └── global.scss │ │ │ └── ts │ │ │ │ ├── constants │ │ │ │ └── breakpoints.ts │ │ │ │ ├── helpers │ │ │ │ ├── glide.ts │ │ │ │ ├── platform.ts │ │ │ │ └── utils.ts │ │ │ │ └── types │ │ │ │ └── types.d.ts │ │ ├── tsconfig.json │ │ ├── webpack.common.js │ │ └── webpack.prod.js │ └── pom.xml ├── pom.xml └── puresight │ ├── backend │ ├── README.md │ ├── bnd.bnd │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── pl │ │ │ └── ds │ │ │ └── starter │ │ │ └── puresight │ │ │ └── cms │ │ │ ├── models │ │ │ ├── HeroComponent.java │ │ │ ├── ImageComponent.java │ │ │ ├── ImagecarouselComponent.java │ │ │ ├── NewsletterComponent.java │ │ │ ├── PageComponent.java │ │ │ ├── TemplateBasedComponentPreviewModel.java │ │ │ ├── TemplateBasedProductDetailsComponentRuntimeModel.java │ │ │ ├── TemplateBasedProductsComponentRuntimeModel.java │ │ │ └── package-info.java │ │ │ ├── package-info.java │ │ │ └── services │ │ │ ├── NewsletterConfigService.java │ │ │ ├── TemplateBasedComponentRuntimeConfigService.java │ │ │ ├── impl │ │ │ ├── NewsletterConfigServiceImpl.java │ │ │ └── TemplateBasedComponentRuntimeConfigServiceImpl.java │ │ │ └── package-info.java │ │ └── resources │ │ └── apps │ │ ├── kyanite │ │ └── common │ │ │ └── components │ │ │ ├── container │ │ │ ├── .content.json │ │ │ ├── container.html │ │ │ └── dialog │ │ │ │ └── .content.json │ │ │ └── hero │ │ │ ├── .content.json │ │ │ ├── attributes │ │ │ └── variant │ │ │ │ └── .content.json │ │ │ ├── dialog │ │ │ └── .content.json │ │ │ └── hero.html │ │ └── puresight │ │ ├── .content.json │ │ ├── components │ │ ├── blogarticlepage │ │ │ ├── .content.json │ │ │ └── head-project-libs.html │ │ ├── fragmentpage │ │ │ ├── .content.json │ │ │ └── head-project-libs.html │ │ ├── imagecarousel │ │ │ ├── .content.json │ │ │ ├── dialog │ │ │ │ └── .content.json │ │ │ ├── imagecarousel.html │ │ │ └── template │ │ │ │ └── .content.json │ │ ├── layouts │ │ │ ├── reviews │ │ │ │ ├── .content.json │ │ │ │ └── template │ │ │ │ │ └── .content.json │ │ │ └── vendors │ │ │ │ ├── .content.json │ │ │ │ └── template │ │ │ │ └── .content.json │ │ ├── newsletter │ │ │ ├── .content.json │ │ │ ├── dialog │ │ │ │ └── .content.json │ │ │ ├── newsletter.html │ │ │ └── template │ │ │ │ └── .content.json │ │ ├── page │ │ │ ├── .content.json │ │ │ └── head-project-libs.html │ │ ├── product │ │ │ ├── carousel │ │ │ │ ├── .content.json │ │ │ │ ├── carousel.html │ │ │ │ ├── dialog │ │ │ │ │ └── .content.json │ │ │ │ ├── template │ │ │ │ │ └── .content.json │ │ │ │ └── templateData.json │ │ │ ├── details │ │ │ │ ├── .content.json │ │ │ │ ├── details.html │ │ │ │ ├── template │ │ │ │ │ └── .content.json │ │ │ │ └── templateData.json │ │ │ └── listing │ │ │ │ ├── .content.json │ │ │ │ ├── dialog │ │ │ │ └── .content.json │ │ │ │ ├── listing.html │ │ │ │ ├── template │ │ │ │ └── .content.json │ │ │ │ └── templateData.json │ │ ├── rating │ │ │ ├── .content.json │ │ │ ├── colorvariant │ │ │ │ └── .content.json │ │ │ ├── dialog │ │ │ │ └── .content.json │ │ │ ├── iconsize │ │ │ │ └── materialdesign │ │ │ │ │ └── .content.json │ │ │ └── rating.html │ │ ├── search │ │ │ ├── .content.json │ │ │ └── search.html │ │ ├── separator │ │ │ ├── .content.json │ │ │ ├── background │ │ │ │ └── .content.json │ │ │ ├── dialog │ │ │ │ └── .content.json │ │ │ ├── padding │ │ │ │ └── .content.json │ │ │ ├── separator.html │ │ │ └── thickness │ │ │ │ └── .content.json │ │ ├── templateif │ │ │ ├── .content.json │ │ │ ├── dialog │ │ │ │ └── .content.json │ │ │ └── templateif.html │ │ ├── templateimage │ │ │ ├── .content.json │ │ │ ├── dialog │ │ │ │ └── .content.json │ │ │ └── templateimage.html │ │ ├── templateiterator │ │ │ ├── .content.json │ │ │ ├── dialog │ │ │ │ └── .content.json │ │ │ └── templateiterator.html │ │ ├── templatepage │ │ │ ├── .content.json │ │ │ ├── dialog │ │ │ │ └── .content.json │ │ │ └── templatepage.html │ │ └── templates │ │ │ ├── carousel.html │ │ │ ├── details.html │ │ │ └── tiles.html │ │ ├── policies │ │ └── .content.json │ │ └── templates │ │ ├── basicpage │ │ ├── .content.json │ │ ├── initial │ │ │ └── .content.json │ │ └── policies │ │ │ └── .content.json │ │ ├── blogarticlepage │ │ ├── .content.json │ │ ├── initial │ │ │ └── .content.json │ │ └── policies │ │ │ └── .content.json │ │ ├── blogcategorypage │ │ ├── .content.json │ │ └── initial │ │ │ └── .content.json │ │ ├── bloglistingpage │ │ ├── .content.json │ │ ├── initial │ │ │ └── .content.json │ │ └── policies │ │ │ └── .content.json │ │ ├── fragmentpage │ │ ├── .content.json │ │ ├── initial │ │ │ └── .content.json │ │ └── policies │ │ │ └── .content.json │ │ ├── fragmentspage │ │ ├── .content.json │ │ └── initial │ │ │ └── .content.json │ │ ├── homepage │ │ ├── .content.json │ │ ├── initial │ │ │ └── .content.json │ │ └── policies │ │ │ └── .content.json │ │ ├── pagesspace │ │ └── .content.json │ │ ├── structurepage │ │ ├── .content.json │ │ └── initial │ │ │ └── .content.json │ │ ├── templatepage │ │ ├── .content.json │ │ ├── initial │ │ │ └── .content.json │ │ └── policies │ │ │ └── .content.json │ │ └── templatesrootpage │ │ ├── .content.json │ │ └── initial │ │ └── .content.json │ ├── content │ ├── README.md │ ├── pom.xml │ └── src │ │ └── main │ │ └── content │ │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── vault │ │ │ └── filter.xml │ │ └── jcr_root │ │ ├── content │ │ └── puresight │ │ │ ├── .content.xml │ │ │ ├── assets │ │ │ ├── .content.xml │ │ │ ├── Blogs │ │ │ │ ├── .content.xml │ │ │ │ ├── SofiaSilva (1).jpg │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ └── renditions │ │ │ │ │ │ ├── original.jpg │ │ │ │ │ │ └── original.jpg.dir │ │ │ │ │ │ └── .content.xml │ │ │ │ ├── bench-accounting-8D2k7a3wMKQ-unsplash.jpg │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ └── renditions │ │ │ │ │ │ ├── original.jpg │ │ │ │ │ │ └── original.jpg.dir │ │ │ │ │ │ └── .content.xml │ │ │ │ ├── clean-apartment.jpeg │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ └── renditions │ │ │ │ │ │ ├── original.jpeg │ │ │ │ │ │ └── original.jpeg.dir │ │ │ │ │ │ └── .content.xml │ │ │ │ ├── decluttering.jpeg │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ └── renditions │ │ │ │ │ │ ├── original.jpeg │ │ │ │ │ │ └── original.jpeg.dir │ │ │ │ │ │ └── .content.xml │ │ │ │ ├── eco-friendly.jpeg │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ └── renditions │ │ │ │ │ │ ├── original.jpeg │ │ │ │ │ │ └── original.jpeg.dir │ │ │ │ │ │ └── .content.xml │ │ │ │ ├── element5-digital-2cwqJgtQ3D0-unsplash.jpg │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ └── renditions │ │ │ │ │ │ ├── original.jpg │ │ │ │ │ │ └── original.jpg.dir │ │ │ │ │ │ └── .content.xml │ │ │ │ ├── hacks-tidy.jpeg │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ └── renditions │ │ │ │ │ │ ├── original.jpeg │ │ │ │ │ │ └── original.jpeg.dir │ │ │ │ │ │ └── .content.xml │ │ │ │ ├── home-organisation.jpeg │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ └── renditions │ │ │ │ │ │ ├── original.jpeg │ │ │ │ │ │ └── original.jpeg.dir │ │ │ │ │ │ └── .content.xml │ │ │ │ ├── micheile-henderson-EOJqV9lZNDk-unsplash.jpg │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ └── renditions │ │ │ │ │ │ ├── original.jpg │ │ │ │ │ │ └── original.jpg.dir │ │ │ │ │ │ └── .content.xml │ │ │ │ ├── minimalist-design.jpeg │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ └── renditions │ │ │ │ │ │ ├── original.jpeg │ │ │ │ │ │ └── original.jpeg.dir │ │ │ │ │ │ └── .content.xml │ │ │ │ ├── shelf-organisation.jpeg │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ └── renditions │ │ │ │ │ │ ├── original.jpeg │ │ │ │ │ │ └── original.jpeg.dir │ │ │ │ │ │ └── .content.xml │ │ │ │ ├── small-space.webp │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ └── renditions │ │ │ │ │ │ ├── original.webp │ │ │ │ │ │ └── original.webp.dir │ │ │ │ │ │ └── .content.xml │ │ │ │ ├── spacejoy-umAXneH4GhA-unsplash.jpg │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ └── renditions │ │ │ │ │ │ ├── original.jpg │ │ │ │ │ │ └── original.jpg.dir │ │ │ │ │ │ └── .content.xml │ │ │ │ └── zen-space.jpeg │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.jpeg │ │ │ │ │ └── original.jpeg.dir │ │ │ │ │ └── .content.xml │ │ │ ├── Products │ │ │ │ ├── .content.xml │ │ │ │ ├── Wayfair-Logo.png │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ └── renditions │ │ │ │ │ │ ├── original.png │ │ │ │ │ │ └── original.png.dir │ │ │ │ │ │ └── .content.xml │ │ │ │ ├── bed-small1.png │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ └── renditions │ │ │ │ │ │ ├── original.png │ │ │ │ │ │ └── original.png.dir │ │ │ │ │ │ └── .content.xml │ │ │ │ ├── bed-small10.png │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ └── renditions │ │ │ │ │ │ ├── original.png │ │ │ │ │ │ └── original.png.dir │ │ │ │ │ │ └── .content.xml │ │ │ │ ├── bed-small2.png │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ └── renditions │ │ │ │ │ │ ├── original.png │ │ │ │ │ │ └── original.png.dir │ │ │ │ │ │ └── .content.xml │ │ │ │ ├── bed-small3.png │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ └── renditions │ │ │ │ │ │ ├── original.png │ │ │ │ │ │ └── original.png.dir │ │ │ │ │ │ └── .content.xml │ │ │ │ ├── bed-small4.png │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ └── renditions │ │ │ │ │ │ ├── original.png │ │ │ │ │ │ └── original.png.dir │ │ │ │ │ │ └── .content.xml │ │ │ │ ├── bed-small5.png │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ └── renditions │ │ │ │ │ │ ├── original.png │ │ │ │ │ │ └── original.png.dir │ │ │ │ │ │ └── .content.xml │ │ │ │ ├── bed-small6.png │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ └── renditions │ │ │ │ │ │ ├── original.png │ │ │ │ │ │ └── original.png.dir │ │ │ │ │ │ └── .content.xml │ │ │ │ ├── bed-small7.png │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ └── renditions │ │ │ │ │ │ ├── original.png │ │ │ │ │ │ └── original.png.dir │ │ │ │ │ │ └── .content.xml │ │ │ │ ├── bed-small8.png │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ └── renditions │ │ │ │ │ │ ├── original.png │ │ │ │ │ │ └── original.png.dir │ │ │ │ │ │ └── .content.xml │ │ │ │ ├── bed-small9.png │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ └── renditions │ │ │ │ │ │ ├── original.png │ │ │ │ │ │ └── original.png.dir │ │ │ │ │ │ └── .content.xml │ │ │ │ ├── bed1.png │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ └── renditions │ │ │ │ │ │ ├── original.png │ │ │ │ │ │ └── original.png.dir │ │ │ │ │ │ └── .content.xml │ │ │ │ ├── bed2.png │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ └── renditions │ │ │ │ │ │ ├── original.png │ │ │ │ │ │ └── original.png.dir │ │ │ │ │ │ └── .content.xml │ │ │ │ ├── bed3.png │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ └── renditions │ │ │ │ │ │ ├── original.png │ │ │ │ │ │ └── original.png.dir │ │ │ │ │ │ └── .content.xml │ │ │ │ ├── bed4.png │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ └── renditions │ │ │ │ │ │ ├── original.png │ │ │ │ │ │ └── original.png.dir │ │ │ │ │ │ └── .content.xml │ │ │ │ ├── bed5.png │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ └── renditions │ │ │ │ │ │ ├── original.png │ │ │ │ │ │ └── original.png.dir │ │ │ │ │ │ └── .content.xml │ │ │ │ ├── bigBed.png │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ └── renditions │ │ │ │ │ │ ├── original.png │ │ │ │ │ │ └── original.png.dir │ │ │ │ │ │ └── .content.xml │ │ │ │ ├── chair-free.jpg │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ └── renditions │ │ │ │ │ │ ├── original.jpg │ │ │ │ │ │ └── original.jpg.dir │ │ │ │ │ │ └── .content.xml │ │ │ │ ├── chair2-free.jpg │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ └── renditions │ │ │ │ │ │ ├── original.jpg │ │ │ │ │ │ └── original.jpg.dir │ │ │ │ │ │ └── .content.xml │ │ │ │ ├── chair3-free.jpeg │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ └── renditions │ │ │ │ │ │ ├── original.jpeg │ │ │ │ │ │ └── original.jpeg.dir │ │ │ │ │ │ └── .content.xml │ │ │ │ ├── desk-free.jpeg │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ └── renditions │ │ │ │ │ │ ├── original.jpeg │ │ │ │ │ │ └── original.jpeg.dir │ │ │ │ │ │ └── .content.xml │ │ │ │ ├── hero3.png │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ └── renditions │ │ │ │ │ │ ├── original.png │ │ │ │ │ │ └── original.png.dir │ │ │ │ │ │ └── .content.xml │ │ │ │ ├── hero4.png │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ └── renditions │ │ │ │ │ │ ├── original.png │ │ │ │ │ │ └── original.png.dir │ │ │ │ │ │ └── .content.xml │ │ │ │ ├── lamp-free.jpeg │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ └── renditions │ │ │ │ │ │ ├── original.jpeg │ │ │ │ │ │ └── original.jpeg.dir │ │ │ │ │ │ └── .content.xml │ │ │ │ ├── lamp2-free.jpeg │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ └── renditions │ │ │ │ │ │ ├── original.jpeg │ │ │ │ │ │ └── original.jpeg.dir │ │ │ │ │ │ └── .content.xml │ │ │ │ ├── lamp3-free.jpeg │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ └── renditions │ │ │ │ │ │ ├── original.jpeg │ │ │ │ │ │ └── original.jpeg.dir │ │ │ │ │ │ └── .content.xml │ │ │ │ ├── living-room-free.jpeg │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ └── renditions │ │ │ │ │ │ ├── original.jpeg │ │ │ │ │ │ └── original.jpeg.dir │ │ │ │ │ │ └── .content.xml │ │ │ │ ├── plant-free.jpeg │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ └── renditions │ │ │ │ │ │ ├── original.jpeg │ │ │ │ │ │ └── original.jpeg.dir │ │ │ │ │ │ └── .content.xml │ │ │ │ ├── plant2-free.jpeg │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ └── renditions │ │ │ │ │ │ ├── original.jpeg │ │ │ │ │ │ └── original.jpeg.dir │ │ │ │ │ │ └── .content.xml │ │ │ │ ├── tabl2-free.jpeg │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ └── renditions │ │ │ │ │ │ ├── original.jpeg │ │ │ │ │ │ └── original.jpeg.dir │ │ │ │ │ │ └── .content.xml │ │ │ │ ├── table-free.jpeg │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ └── renditions │ │ │ │ │ │ ├── original.jpeg │ │ │ │ │ │ └── original.jpeg.dir │ │ │ │ │ │ └── .content.xml │ │ │ │ └── vendors │ │ │ │ │ ├── .content.xml │ │ │ │ │ ├── image 8-1.png │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ └── renditions │ │ │ │ │ │ ├── original.png │ │ │ │ │ │ └── original.png.dir │ │ │ │ │ │ └── .content.xml │ │ │ │ │ ├── image 8-2.png │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ └── renditions │ │ │ │ │ │ ├── original.png │ │ │ │ │ │ └── original.png.dir │ │ │ │ │ │ └── .content.xml │ │ │ │ │ ├── image 8-3.png │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ └── renditions │ │ │ │ │ │ ├── original.png │ │ │ │ │ │ └── original.png.dir │ │ │ │ │ │ └── .content.xml │ │ │ │ │ └── image 8.png │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.png │ │ │ │ │ └── original.png.dir │ │ │ │ │ └── .content.xml │ │ │ ├── errors │ │ │ │ ├── 404 │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── closeup-high-loft-style-chair-evening-garden.jpg │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ └── renditions │ │ │ │ │ │ ├── original.jpg │ │ │ │ │ │ └── original.jpg.dir │ │ │ │ │ │ └── .content.xml │ │ │ │ └── .content.xml │ │ │ ├── homepage │ │ │ │ ├── .content.xml │ │ │ │ ├── PureSight logo - logo icon no margin.png │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ └── renditions │ │ │ │ │ │ ├── original.png │ │ │ │ │ │ └── original.png.dir │ │ │ │ │ │ └── .content.xml │ │ │ │ ├── PureSight logo - no margin - on light.png │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ └── renditions │ │ │ │ │ │ ├── original.png │ │ │ │ │ │ └── original.png.dir │ │ │ │ │ │ └── .content.xml │ │ │ │ ├── black-chair.png │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ └── renditions │ │ │ │ │ │ ├── original.png │ │ │ │ │ │ └── original.png.dir │ │ │ │ │ │ └── .content.xml │ │ │ │ ├── blue-chair.png │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ └── renditions │ │ │ │ │ │ ├── original.png │ │ │ │ │ │ └── original.png.dir │ │ │ │ │ │ └── .content.xml │ │ │ │ ├── card-image.png │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ └── renditions │ │ │ │ │ │ ├── original.png │ │ │ │ │ │ └── original.png.dir │ │ │ │ │ │ └── .content.xml │ │ │ │ ├── card-image19.png │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ └── renditions │ │ │ │ │ │ ├── original.png │ │ │ │ │ │ └── original.png.dir │ │ │ │ │ │ └── .content.xml │ │ │ │ ├── greenChair.png │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ └── renditions │ │ │ │ │ │ ├── original.png │ │ │ │ │ │ └── original.png.dir │ │ │ │ │ │ └── .content.xml │ │ │ │ ├── img1.png │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ └── renditions │ │ │ │ │ │ ├── original.png │ │ │ │ │ │ └── original.png.dir │ │ │ │ │ │ └── .content.xml │ │ │ │ ├── img2.png │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ └── renditions │ │ │ │ │ │ ├── original.png │ │ │ │ │ │ └── original.png.dir │ │ │ │ │ │ └── .content.xml │ │ │ │ ├── img3.png │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ └── renditions │ │ │ │ │ │ ├── original.png │ │ │ │ │ │ └── original.png.dir │ │ │ │ │ │ └── .content.xml │ │ │ │ ├── img4.png │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ └── renditions │ │ │ │ │ │ ├── original.png │ │ │ │ │ │ └── original.png.dir │ │ │ │ │ │ └── .content.xml │ │ │ │ ├── img5.png │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ └── renditions │ │ │ │ │ │ ├── original.png │ │ │ │ │ │ └── original.png.dir │ │ │ │ │ │ └── .content.xml │ │ │ │ ├── img6.png │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ └── renditions │ │ │ │ │ │ ├── original.png │ │ │ │ │ │ └── original.png.dir │ │ │ │ │ │ └── .content.xml │ │ │ │ ├── img7.png │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ └── renditions │ │ │ │ │ │ ├── original.png │ │ │ │ │ │ └── original.png.dir │ │ │ │ │ │ └── .content.xml │ │ │ │ ├── img8.png │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ └── renditions │ │ │ │ │ │ ├── original.png │ │ │ │ │ │ └── original.png.dir │ │ │ │ │ │ └── .content.xml │ │ │ │ └── pokoj.png │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.png │ │ │ │ │ └── original.png.dir │ │ │ │ │ └── .content.xml │ │ │ └── static │ │ │ │ ├── .content.xml │ │ │ │ └── favicon.ico │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ └── renditions │ │ │ │ ├── original.ico │ │ │ │ └── original.ico.dir │ │ │ │ └── .content.xml │ │ │ └── pages │ │ │ ├── .content.xml │ │ │ ├── blog │ │ │ ├── .content.xml │ │ │ ├── decluttering-for-serenity │ │ │ │ └── .content.xml │ │ │ ├── design-tips-for-cozy-apartments │ │ │ │ └── .content.xml │ │ │ ├── efficient-cleaning-hacks │ │ │ │ └── .content.xml │ │ │ ├── from-chaos-to-calm │ │ │ │ └── .content.xml │ │ │ ├── maximizing-space-in-your-home │ │ │ │ └── .content.xml │ │ │ ├── simplify-your-space │ │ │ │ └── .content.xml │ │ │ ├── streamlining-your-space │ │ │ │ └── .content.xml │ │ │ ├── sustainable-interior-design │ │ │ │ └── .content.xml │ │ │ └── the-marie-kondo-method │ │ │ │ └── .content.xml │ │ │ ├── errors │ │ │ ├── 404 │ │ │ │ └── .content.xml │ │ │ └── .content.xml │ │ │ ├── homepage │ │ │ └── .content.xml │ │ │ ├── policies-licences │ │ │ └── .content.xml │ │ │ ├── products │ │ │ ├── .content.xml │ │ │ └── product-example │ │ │ │ └── .content.xml │ │ │ └── templates │ │ │ ├── .content.xml │ │ │ └── product │ │ │ └── .content.xml │ │ └── etc │ │ └── groovy-console │ │ └── puresight │ │ ├── .content.xml │ │ ├── publish-components.groovy │ │ └── publish-components.groovy.dir │ │ └── .content.xml │ ├── frontend │ ├── .babelrc │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .gitignore │ ├── README.md │ ├── assembly.xml │ ├── bnd.bnd │ ├── package-lock.json │ ├── package.json │ ├── pom.xml │ ├── src │ │ ├── _colors.scss │ │ ├── _css-variables.scss │ │ ├── components │ │ │ ├── BlogTemplates │ │ │ │ ├── BlogTemplates.scss │ │ │ │ └── _index.scss │ │ │ ├── Breadcrumb │ │ │ │ ├── Breadcrumb.scss │ │ │ │ └── _index.scss │ │ │ ├── Button │ │ │ │ ├── Button.scss │ │ │ │ └── _index.scss │ │ │ ├── Carousel │ │ │ │ ├── Carousel.scss │ │ │ │ └── _index.scss │ │ │ ├── Footer │ │ │ │ ├── Footer.scss │ │ │ │ └── _index.scss │ │ │ ├── Hero │ │ │ │ ├── Hero.scss │ │ │ │ └── _index.scss │ │ │ ├── ImageCarousel │ │ │ │ ├── ImageCarousel.class.ts │ │ │ │ ├── ImageCarousel.scss │ │ │ │ ├── _index.scss │ │ │ │ ├── _splide.scss │ │ │ │ └── imageCarousel.ts │ │ │ ├── Modalcard │ │ │ │ ├── Modalcard.scss │ │ │ │ └── _index.scss │ │ │ ├── Navbar │ │ │ │ ├── Navbar.scss │ │ │ │ └── _index.scss │ │ │ ├── Newsletter │ │ │ │ ├── Newsletter.scss │ │ │ │ └── _index.scss │ │ │ ├── ProductTemplates │ │ │ │ ├── ProductTemplates.scss │ │ │ │ └── _index.scss │ │ │ ├── Rating │ │ │ │ ├── Rating.scss │ │ │ │ └── _index.scss │ │ │ ├── Search │ │ │ │ ├── Search.scss │ │ │ │ ├── _index.scss │ │ │ │ ├── search.ts │ │ │ │ ├── service.ts │ │ │ │ └── test-data.ts │ │ │ ├── Section │ │ │ │ ├── Section.scss │ │ │ │ └── _index.scss │ │ │ ├── Separator │ │ │ │ ├── Separator.scss │ │ │ │ └── _index.scss │ │ │ ├── Tile │ │ │ │ ├── Tile.scss │ │ │ │ └── _index.scss │ │ │ ├── index.scss │ │ │ └── index.ts │ │ ├── global.scss │ │ ├── main.scss │ │ └── main.ts │ ├── tsconfig.json │ ├── webpack.common.js │ └── webpack.prod.js │ └── pom.xml ├── assets ├── luna-screenshot.png └── technologies │ ├── aws-logo.png │ ├── bash-logo.png │ ├── bitbucket-logo.png │ ├── confluence-logo.png │ ├── cypress-logo.png │ ├── docker-logo.png │ ├── figma-logo.png │ ├── github-logo.png │ ├── jackrabbit-logo.png │ ├── java-logo.png │ ├── jira-logo.png │ ├── maven-logo.png │ ├── miro-logo.png │ ├── mongodb-logo.png │ ├── nginx-logo.png │ ├── osgi-logo.png │ ├── percy-logo.png │ ├── react-logo.png │ ├── sling-logo.png │ ├── typescript-logo.png │ └── yaml-logo.png ├── content ├── pom.xml └── src │ └── main │ └── content │ ├── META-INF │ └── vault │ │ └── filter.xml │ └── jcr_root │ └── content │ ├── lowcodeluna │ ├── .content.xml │ ├── assets │ │ ├── .content.xml │ │ └── images │ │ │ ├── .content.xml │ │ │ ├── LUNA.svg │ │ │ ├── .content.xml │ │ │ └── _jcr_content │ │ │ │ └── renditions │ │ │ │ ├── original.svg │ │ │ │ └── original.svg.dir │ │ │ │ └── .content.xml │ │ │ ├── aboutus │ │ │ ├── .content.xml │ │ │ ├── AboutUs6.png │ │ │ │ ├── .content.xml │ │ │ │ ├── LICENSE.md │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.png │ │ │ │ │ └── original.png.dir │ │ │ │ │ └── .content.xml │ │ │ ├── AboutUs8.png │ │ │ │ ├── .content.xml │ │ │ │ ├── LICENSE.md │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.png │ │ │ │ │ └── original.png.dir │ │ │ │ │ └── .content.xml │ │ │ ├── Errings.png │ │ │ │ ├── .content.xml │ │ │ │ ├── LICENSE.md │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.png │ │ │ │ │ └── original.png.dir │ │ │ │ │ └── .content.xml │ │ │ ├── Jewellery set.png │ │ │ │ ├── .content.xml │ │ │ │ ├── LICENSE.md │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.png │ │ │ │ │ └── original.png.dir │ │ │ │ │ └── .content.xml │ │ │ ├── Ring-creation-process.png │ │ │ │ ├── .content.xml │ │ │ │ ├── LICENSE.md │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.png │ │ │ │ │ └── original.png.dir │ │ │ │ │ └── .content.xml │ │ │ ├── customer-service.svg │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.svg │ │ │ │ │ └── original.svg.dir │ │ │ │ │ └── .content.xml │ │ │ ├── easy-returns.svg │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.svg │ │ │ │ │ └── original.svg.dir │ │ │ │ │ └── .content.xml │ │ │ ├── hero-image-our-story.png │ │ │ │ ├── .content.xml │ │ │ │ ├── LICENSE.md │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.png │ │ │ │ │ └── original.png.dir │ │ │ │ │ └── .content.xml │ │ │ ├── pearl bracelet.png │ │ │ │ ├── .content.xml │ │ │ │ ├── LICENSE.md │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.png │ │ │ │ │ └── original.png.dir │ │ │ │ │ └── .content.xml │ │ │ ├── promo-necles-1.png │ │ │ │ ├── .content.xml │ │ │ │ ├── LICENSE.md │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.png │ │ │ │ │ └── original.png.dir │ │ │ │ │ └── .content.xml │ │ │ └── security-payment.svg │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ └── renditions │ │ │ │ ├── original.svg │ │ │ │ └── original.svg.dir │ │ │ │ └── .content.xml │ │ │ ├── catalog │ │ │ ├── .content.xml │ │ │ ├── Ball Bypass Bracelet.png │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.png │ │ │ │ │ └── original.png.dir │ │ │ │ │ └── .content.xml │ │ │ ├── Color By The Yard Emerald Pendant.png │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.png │ │ │ │ │ └── original.png.dir │ │ │ │ │ └── .content.xml │ │ │ ├── Diamond Hoop Single-Row Bangle.png │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.png │ │ │ │ │ └── original.png.dir │ │ │ │ │ └── .content.xml │ │ │ ├── Diamond Vine Ring In Platinum.png │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.png │ │ │ │ │ └── original.png.dir │ │ │ │ │ └── .content.xml │ │ │ ├── Layer Cake Necklace Set.png │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.png │ │ │ │ │ └── original.png.dir │ │ │ │ │ └── .content.xml │ │ │ ├── Nesting Narrow Band Ring.png │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.png │ │ │ │ │ └── original.png.dir │ │ │ │ │ └── .content.xml │ │ │ ├── Olive Leaf Band Ring.png │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.png │ │ │ │ │ └── original.png.dir │ │ │ │ │ └── .content.xml │ │ │ ├── Olive Leaf Earrings.png │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.png │ │ │ │ │ └── original.png.dir │ │ │ │ │ └── .content.xml │ │ │ ├── Olive Leaf Pendant.png │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.png │ │ │ │ │ └── original.png.dir │ │ │ │ │ └── .content.xml │ │ │ ├── Our Catalog.png │ │ │ │ ├── .content.xml │ │ │ │ ├── LICENSE.md │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.png │ │ │ │ │ └── original.png.dir │ │ │ │ │ └── .content.xml │ │ │ ├── Setting Engagement Ring in Silver.png │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.png │ │ │ │ │ └── original.png.dir │ │ │ │ │ └── .content.xml │ │ │ ├── The Texture Ring Set.png │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.png │ │ │ │ │ └── original.png.dir │ │ │ │ │ └── .content.xml │ │ │ ├── Viviana Diamond Engagement Ring.png │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.png │ │ │ │ │ └── original.png.dir │ │ │ │ │ └── .content.xml │ │ │ └── diamond earing.png │ │ │ │ ├── .content.xml │ │ │ │ ├── LICENSE.md │ │ │ │ └── _jcr_content │ │ │ │ └── renditions │ │ │ │ ├── original.png │ │ │ │ └── original.png.dir │ │ │ │ └── .content.xml │ │ │ ├── homepage │ │ │ ├── .content.xml │ │ │ ├── Amadeus-collection.png │ │ │ │ ├── .content.xml │ │ │ │ ├── LICENSE.md │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.png │ │ │ │ │ └── original.png.dir │ │ │ │ │ └── .content.xml │ │ │ ├── Ball Hook Earrings.png │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.png │ │ │ │ │ └── original.png.dir │ │ │ │ │ └── .content.xml │ │ │ ├── Bracelets.png │ │ │ │ ├── .content.xml │ │ │ │ ├── LICENSE.md │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.png │ │ │ │ │ └── original.png.dir │ │ │ │ │ └── .content.xml │ │ │ ├── Cushion.svg │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.svg │ │ │ │ │ └── original.svg.dir │ │ │ │ │ └── .content.xml │ │ │ ├── Design-process.png │ │ │ │ ├── .content.xml │ │ │ │ ├── LICENSE.md │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.png │ │ │ │ │ └── original.png.dir │ │ │ │ │ └── .content.xml │ │ │ ├── Diamond Vine Climber Earrings.png │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.png │ │ │ │ │ └── original.png.dir │ │ │ │ │ └── .content.xml │ │ │ ├── Diamond ring.png │ │ │ │ ├── .content.xml │ │ │ │ ├── LICENSE.md │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.png │ │ │ │ │ └── original.png.dir │ │ │ │ │ └── .content.xml │ │ │ ├── Diamonds By The Yard Bracelet.png │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.png │ │ │ │ │ └── original.png.dir │ │ │ │ │ └── .content.xml │ │ │ ├── Emerald.svg │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.svg │ │ │ │ │ └── original.svg.dir │ │ │ │ │ └── .content.xml │ │ │ ├── Hands with jewelry.png │ │ │ │ ├── .content.xml │ │ │ │ ├── LICENSE.md │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.png │ │ │ │ │ └── original.png.dir │ │ │ │ │ └── .content.xml │ │ │ ├── Janet.png │ │ │ │ ├── .content.xml │ │ │ │ ├── LICENSE.md │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.png │ │ │ │ │ └── original.png.dir │ │ │ │ │ └── .content.xml │ │ │ ├── Layer Cake Necklace Set.png │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.png │ │ │ │ │ └── original.png.dir │ │ │ │ │ └── .content.xml │ │ │ ├── Logo 1.svg │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.svg │ │ │ │ │ └── original.svg.dir │ │ │ │ │ └── .content.xml │ │ │ ├── Logo 2.svg │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.svg │ │ │ │ │ └── original.svg.dir │ │ │ │ │ └── .content.xml │ │ │ ├── Logo 3.svg │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.svg │ │ │ │ │ └── original.svg.dir │ │ │ │ │ └── .content.xml │ │ │ ├── Logo 4.svg │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.svg │ │ │ │ │ └── original.svg.dir │ │ │ │ │ └── .content.xml │ │ │ ├── Logo 5.svg │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.svg │ │ │ │ │ └── original.svg.dir │ │ │ │ │ └── .content.xml │ │ │ ├── Margot-collection.png │ │ │ │ ├── .content.xml │ │ │ │ ├── LICENSE.md │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.png │ │ │ │ │ └── original.png.dir │ │ │ │ │ └── .content.xml │ │ │ ├── Marquise.svg │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.svg │ │ │ │ │ └── original.svg.dir │ │ │ │ │ └── .content.xml │ │ │ ├── Necles-hero-image.png │ │ │ │ ├── .content.xml │ │ │ │ ├── LICENSE.md │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.png │ │ │ │ │ └── original.png.dir │ │ │ │ │ └── .content.xml │ │ │ ├── Nesting Narrow Band Ring.png │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.png │ │ │ │ │ └── original.png.dir │ │ │ │ │ └── .content.xml │ │ │ ├── Oval.svg │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.svg │ │ │ │ │ └── original.svg.dir │ │ │ │ │ └── .content.xml │ │ │ ├── Pear.svg │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.svg │ │ │ │ │ └── original.svg.dir │ │ │ │ │ └── .content.xml │ │ │ └── Round.svg │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ └── renditions │ │ │ │ ├── original.svg │ │ │ │ └── original.svg.dir │ │ │ │ └── .content.xml │ │ │ └── product │ │ │ ├── .content.xml │ │ │ ├── Diamond Cut Ankle.png │ │ │ ├── .content.xml │ │ │ └── _jcr_content │ │ │ │ └── renditions │ │ │ │ ├── original.png │ │ │ │ └── original.png.dir │ │ │ │ └── .content.xml │ │ │ ├── Diamond Vine Ring In Platinum.png │ │ │ ├── .content.xml │ │ │ └── _jcr_content │ │ │ │ └── renditions │ │ │ │ ├── original.png │ │ │ │ └── original.png.dir │ │ │ │ └── .content.xml │ │ │ ├── Ring in a hand.png │ │ │ ├── .content.xml │ │ │ ├── LICENSE.md │ │ │ └── _jcr_content │ │ │ │ └── renditions │ │ │ │ ├── original.png │ │ │ │ └── original.png.dir │ │ │ │ └── .content.xml │ │ │ ├── Silver Ring.png │ │ │ ├── .content.xml │ │ │ ├── LICENSE.md │ │ │ └── _jcr_content │ │ │ │ └── renditions │ │ │ │ ├── original.png │ │ │ │ └── original.png.dir │ │ │ │ └── .content.xml │ │ │ ├── The Texture Ring Set.png │ │ │ ├── .content.xml │ │ │ └── _jcr_content │ │ │ │ └── renditions │ │ │ │ ├── original.png │ │ │ │ └── original.png.dir │ │ │ │ └── .content.xml │ │ │ ├── Viviana Diamond Engagement Ring.png │ │ │ ├── .content.xml │ │ │ └── _jcr_content │ │ │ │ └── renditions │ │ │ │ ├── original.png │ │ │ │ └── original.png.dir │ │ │ │ └── .content.xml │ │ │ ├── drop-a-hint.svg │ │ │ ├── .content.xml │ │ │ └── _jcr_content │ │ │ │ └── renditions │ │ │ │ ├── original.svg │ │ │ │ └── original.svg.dir │ │ │ │ └── .content.xml │ │ │ ├── payment-plans.svg │ │ │ ├── .content.xml │ │ │ └── _jcr_content │ │ │ │ └── renditions │ │ │ │ ├── original.svg │ │ │ │ └── original.svg.dir │ │ │ │ └── .content.xml │ │ │ └── ring-resizing.svg │ │ │ ├── .content.xml │ │ │ └── _jcr_content │ │ │ └── renditions │ │ │ ├── original.svg │ │ │ └── original.svg.dir │ │ │ └── .content.xml │ └── pages │ │ ├── .content.xml │ │ ├── About │ │ └── .content.xml │ │ ├── Catalog │ │ └── .content.xml │ │ ├── Homepage │ │ └── .content.xml │ │ └── Products │ │ └── .content.xml │ ├── luna │ ├── .content.xml │ ├── assets │ │ ├── .content.xml │ │ └── images │ │ │ ├── .content.xml │ │ │ ├── LUNA.svg │ │ │ ├── .content.xml │ │ │ └── _jcr_content │ │ │ │ └── renditions │ │ │ │ ├── original.svg │ │ │ │ └── original.svg.dir │ │ │ │ └── .content.xml │ │ │ ├── aboutus │ │ │ ├── .content.xml │ │ │ ├── AboutUs6.png │ │ │ │ ├── .content.xml │ │ │ │ ├── LICENSE.md │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.png │ │ │ │ │ └── original.png.dir │ │ │ │ │ └── .content.xml │ │ │ ├── AboutUs8.png │ │ │ │ ├── .content.xml │ │ │ │ ├── LICENSE.md │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.png │ │ │ │ │ └── original.png.dir │ │ │ │ │ └── .content.xml │ │ │ ├── Errings.png │ │ │ │ ├── .content.xml │ │ │ │ ├── LICENSE.md │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.png │ │ │ │ │ └── original.png.dir │ │ │ │ │ └── .content.xml │ │ │ ├── Jewellery set.png │ │ │ │ ├── .content.xml │ │ │ │ ├── LICENSE.md │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.png │ │ │ │ │ └── original.png.dir │ │ │ │ │ └── .content.xml │ │ │ ├── Ring-creation-process.png │ │ │ │ ├── .content.xml │ │ │ │ ├── LICENSE.md │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.png │ │ │ │ │ └── original.png.dir │ │ │ │ │ └── .content.xml │ │ │ ├── customer-service.svg │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.svg │ │ │ │ │ └── original.svg.dir │ │ │ │ │ └── .content.xml │ │ │ ├── easy-returns.svg │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.svg │ │ │ │ │ └── original.svg.dir │ │ │ │ │ └── .content.xml │ │ │ ├── hero-image-our-story.png │ │ │ │ ├── .content.xml │ │ │ │ ├── LICENSE.md │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.png │ │ │ │ │ └── original.png.dir │ │ │ │ │ └── .content.xml │ │ │ ├── pearl bracelet.png │ │ │ │ ├── .content.xml │ │ │ │ ├── LICENSE.md │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.png │ │ │ │ │ └── original.png.dir │ │ │ │ │ └── .content.xml │ │ │ ├── promo-necles-1.png │ │ │ │ ├── .content.xml │ │ │ │ ├── LICENSE.md │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.png │ │ │ │ │ └── original.png.dir │ │ │ │ │ └── .content.xml │ │ │ └── security-payment.svg │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ └── renditions │ │ │ │ ├── original.svg │ │ │ │ └── original.svg.dir │ │ │ │ └── .content.xml │ │ │ ├── catalog │ │ │ ├── .content.xml │ │ │ ├── Ball Bypass Bracelet.png │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.png │ │ │ │ │ └── original.png.dir │ │ │ │ │ └── .content.xml │ │ │ ├── Color By The Yard Emerald Pendant.png │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.png │ │ │ │ │ └── original.png.dir │ │ │ │ │ └── .content.xml │ │ │ ├── Diamond Hoop Single-Row Bangle.png │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.png │ │ │ │ │ └── original.png.dir │ │ │ │ │ └── .content.xml │ │ │ ├── Diamond Vine Ring In Platinum.png │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.png │ │ │ │ │ └── original.png.dir │ │ │ │ │ └── .content.xml │ │ │ ├── Layer Cake Necklace Set.png │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.png │ │ │ │ │ └── original.png.dir │ │ │ │ │ └── .content.xml │ │ │ ├── Nesting Narrow Band Ring.png │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.png │ │ │ │ │ └── original.png.dir │ │ │ │ │ └── .content.xml │ │ │ ├── Olive Leaf Band Ring.png │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.png │ │ │ │ │ └── original.png.dir │ │ │ │ │ └── .content.xml │ │ │ ├── Olive Leaf Earrings.png │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.png │ │ │ │ │ └── original.png.dir │ │ │ │ │ └── .content.xml │ │ │ ├── Olive Leaf Pendant.png │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.png │ │ │ │ │ └── original.png.dir │ │ │ │ │ └── .content.xml │ │ │ ├── Our Catalog.png │ │ │ │ ├── .content.xml │ │ │ │ ├── LICENSE.md │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.png │ │ │ │ │ └── original.png.dir │ │ │ │ │ └── .content.xml │ │ │ ├── Setting Engagement Ring in Silver.png │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.png │ │ │ │ │ └── original.png.dir │ │ │ │ │ └── .content.xml │ │ │ ├── The Texture Ring Set.png │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.png │ │ │ │ │ └── original.png.dir │ │ │ │ │ └── .content.xml │ │ │ ├── Viviana Diamond Engagement Ring.png │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.png │ │ │ │ │ └── original.png.dir │ │ │ │ │ └── .content.xml │ │ │ └── diamond earing.png │ │ │ │ ├── .content.xml │ │ │ │ ├── LICENSE.md │ │ │ │ └── _jcr_content │ │ │ │ └── renditions │ │ │ │ ├── original.png │ │ │ │ └── original.png.dir │ │ │ │ └── .content.xml │ │ │ ├── homepage │ │ │ ├── .content.xml │ │ │ ├── Amadeus-collection.png │ │ │ │ ├── .content.xml │ │ │ │ ├── LICENSE.md │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.png │ │ │ │ │ └── original.png.dir │ │ │ │ │ └── .content.xml │ │ │ ├── Ball Hook Earrings.png │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.png │ │ │ │ │ └── original.png.dir │ │ │ │ │ └── .content.xml │ │ │ ├── Bracelets.png │ │ │ │ ├── .content.xml │ │ │ │ ├── LICENSE.md │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.png │ │ │ │ │ └── original.png.dir │ │ │ │ │ └── .content.xml │ │ │ ├── Cushion.svg │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.svg │ │ │ │ │ └── original.svg.dir │ │ │ │ │ └── .content.xml │ │ │ ├── Design-process.png │ │ │ │ ├── .content.xml │ │ │ │ ├── LICENSE.md │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.png │ │ │ │ │ └── original.png.dir │ │ │ │ │ └── .content.xml │ │ │ ├── Diamond Vine Climber Earrings.png │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.png │ │ │ │ │ └── original.png.dir │ │ │ │ │ └── .content.xml │ │ │ ├── Diamond ring.png │ │ │ │ ├── .content.xml │ │ │ │ ├── LICENSE.md │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.png │ │ │ │ │ └── original.png.dir │ │ │ │ │ └── .content.xml │ │ │ ├── Diamonds By The Yard Bracelet.png │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.png │ │ │ │ │ └── original.png.dir │ │ │ │ │ └── .content.xml │ │ │ ├── Emerald.svg │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.svg │ │ │ │ │ └── original.svg.dir │ │ │ │ │ └── .content.xml │ │ │ ├── Hands with jewelry.png │ │ │ │ ├── .content.xml │ │ │ │ ├── LICENSE.md │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.png │ │ │ │ │ └── original.png.dir │ │ │ │ │ └── .content.xml │ │ │ ├── Janet.png │ │ │ │ ├── .content.xml │ │ │ │ ├── LICENSE.md │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.png │ │ │ │ │ └── original.png.dir │ │ │ │ │ └── .content.xml │ │ │ ├── Layer Cake Necklace Set.png │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.png │ │ │ │ │ └── original.png.dir │ │ │ │ │ └── .content.xml │ │ │ ├── Logo 1.svg │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.svg │ │ │ │ │ └── original.svg.dir │ │ │ │ │ └── .content.xml │ │ │ ├── Logo 2.svg │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.svg │ │ │ │ │ └── original.svg.dir │ │ │ │ │ └── .content.xml │ │ │ ├── Logo 3.svg │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.svg │ │ │ │ │ └── original.svg.dir │ │ │ │ │ └── .content.xml │ │ │ ├── Logo 4.svg │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.svg │ │ │ │ │ └── original.svg.dir │ │ │ │ │ └── .content.xml │ │ │ ├── Logo 5.svg │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.svg │ │ │ │ │ └── original.svg.dir │ │ │ │ │ └── .content.xml │ │ │ ├── Margot-collection.png │ │ │ │ ├── .content.xml │ │ │ │ ├── LICENSE.md │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.png │ │ │ │ │ └── original.png.dir │ │ │ │ │ └── .content.xml │ │ │ ├── Marquise.svg │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.svg │ │ │ │ │ └── original.svg.dir │ │ │ │ │ └── .content.xml │ │ │ ├── Necles-hero-image.png │ │ │ │ ├── .content.xml │ │ │ │ ├── LICENSE.md │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.png │ │ │ │ │ └── original.png.dir │ │ │ │ │ └── .content.xml │ │ │ ├── Nesting Narrow Band Ring.png │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.png │ │ │ │ │ └── original.png.dir │ │ │ │ │ └── .content.xml │ │ │ ├── Oval.svg │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.svg │ │ │ │ │ └── original.svg.dir │ │ │ │ │ └── .content.xml │ │ │ ├── Pear.svg │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ │ └── renditions │ │ │ │ │ ├── original.svg │ │ │ │ │ └── original.svg.dir │ │ │ │ │ └── .content.xml │ │ │ └── Round.svg │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ └── renditions │ │ │ │ ├── original.svg │ │ │ │ └── original.svg.dir │ │ │ │ └── .content.xml │ │ │ └── product │ │ │ ├── .content.xml │ │ │ ├── Diamond Cut Ankle.png │ │ │ ├── .content.xml │ │ │ └── _jcr_content │ │ │ │ └── renditions │ │ │ │ ├── original.png │ │ │ │ └── original.png.dir │ │ │ │ └── .content.xml │ │ │ ├── Diamond Vine Ring In Platinum.png │ │ │ ├── .content.xml │ │ │ └── _jcr_content │ │ │ │ └── renditions │ │ │ │ ├── original.png │ │ │ │ └── original.png.dir │ │ │ │ └── .content.xml │ │ │ ├── Ring in a hand.png │ │ │ ├── .content.xml │ │ │ ├── LICENSE.md │ │ │ └── _jcr_content │ │ │ │ └── renditions │ │ │ │ ├── original.png │ │ │ │ └── original.png.dir │ │ │ │ └── .content.xml │ │ │ ├── Silver Ring.png │ │ │ ├── .content.xml │ │ │ ├── LICENSE.md │ │ │ └── _jcr_content │ │ │ │ └── renditions │ │ │ │ ├── original.png │ │ │ │ └── original.png.dir │ │ │ │ └── .content.xml │ │ │ ├── The Texture Ring Set.png │ │ │ ├── .content.xml │ │ │ └── _jcr_content │ │ │ │ └── renditions │ │ │ │ ├── original.png │ │ │ │ └── original.png.dir │ │ │ │ └── .content.xml │ │ │ ├── Viviana Diamond Engagement Ring.png │ │ │ ├── .content.xml │ │ │ └── _jcr_content │ │ │ │ └── renditions │ │ │ │ ├── original.png │ │ │ │ └── original.png.dir │ │ │ │ └── .content.xml │ │ │ ├── drop-a-hint.svg │ │ │ ├── .content.xml │ │ │ └── _jcr_content │ │ │ │ └── renditions │ │ │ │ ├── original.svg │ │ │ │ └── original.svg.dir │ │ │ │ └── .content.xml │ │ │ ├── payment-plans.svg │ │ │ ├── .content.xml │ │ │ └── _jcr_content │ │ │ │ └── renditions │ │ │ │ ├── original.svg │ │ │ │ └── original.svg.dir │ │ │ │ └── .content.xml │ │ │ └── ring-resizing.svg │ │ │ ├── .content.xml │ │ │ └── _jcr_content │ │ │ └── renditions │ │ │ ├── original.svg │ │ │ └── original.svg.dir │ │ │ └── .content.xml │ └── pages │ │ ├── .content.xml │ │ ├── About-Us │ │ └── .content.xml │ │ ├── Catalog │ │ └── .content.xml │ │ ├── Homepage │ │ └── .content.xml │ │ └── Products │ │ └── .content.xml │ └── nocodeluna │ ├── .content.xml │ ├── assets │ ├── .content.xml │ └── images │ │ ├── .content.xml │ │ ├── LUNA.svg │ │ ├── .content.xml │ │ └── _jcr_content │ │ │ └── renditions │ │ │ ├── original.svg │ │ │ └── original.svg.dir │ │ │ └── .content.xml │ │ ├── aboutus │ │ ├── .content.xml │ │ ├── AboutUs6.png │ │ │ ├── .content.xml │ │ │ ├── LICENSE.md │ │ │ └── _jcr_content │ │ │ │ └── renditions │ │ │ │ ├── original.png │ │ │ │ └── original.png.dir │ │ │ │ └── .content.xml │ │ ├── AboutUs8.png │ │ │ ├── .content.xml │ │ │ ├── LICENSE.md │ │ │ └── _jcr_content │ │ │ │ └── renditions │ │ │ │ ├── original.png │ │ │ │ └── original.png.dir │ │ │ │ └── .content.xml │ │ ├── Errings.png │ │ │ ├── .content.xml │ │ │ ├── LICENSE.md │ │ │ └── _jcr_content │ │ │ │ └── renditions │ │ │ │ ├── original.png │ │ │ │ └── original.png.dir │ │ │ │ └── .content.xml │ │ ├── Jewellery set.png │ │ │ ├── .content.xml │ │ │ ├── LICENSE.md │ │ │ └── _jcr_content │ │ │ │ └── renditions │ │ │ │ ├── original.png │ │ │ │ └── original.png.dir │ │ │ │ └── .content.xml │ │ ├── Ring-creation-process.png │ │ │ ├── .content.xml │ │ │ ├── LICENSE.md │ │ │ └── _jcr_content │ │ │ │ └── renditions │ │ │ │ ├── original.png │ │ │ │ └── original.png.dir │ │ │ │ └── .content.xml │ │ ├── customer-service.svg │ │ │ ├── .content.xml │ │ │ └── _jcr_content │ │ │ │ └── renditions │ │ │ │ ├── original.svg │ │ │ │ └── original.svg.dir │ │ │ │ └── .content.xml │ │ ├── easy-returns.svg │ │ │ ├── .content.xml │ │ │ └── _jcr_content │ │ │ │ └── renditions │ │ │ │ ├── original.svg │ │ │ │ └── original.svg.dir │ │ │ │ └── .content.xml │ │ ├── hero-image-our-story.png │ │ │ ├── .content.xml │ │ │ ├── LICENSE.md │ │ │ └── _jcr_content │ │ │ │ └── renditions │ │ │ │ ├── original.png │ │ │ │ └── original.png.dir │ │ │ │ └── .content.xml │ │ ├── pearl bracelet.png │ │ │ ├── .content.xml │ │ │ ├── LICENSE.md │ │ │ └── _jcr_content │ │ │ │ └── renditions │ │ │ │ ├── original.png │ │ │ │ └── original.png.dir │ │ │ │ └── .content.xml │ │ ├── promo-necles-1.png │ │ │ ├── .content.xml │ │ │ ├── LICENSE.md │ │ │ └── _jcr_content │ │ │ │ └── renditions │ │ │ │ ├── original.png │ │ │ │ └── original.png.dir │ │ │ │ └── .content.xml │ │ └── security-payment.svg │ │ │ ├── .content.xml │ │ │ └── _jcr_content │ │ │ └── renditions │ │ │ ├── original.svg │ │ │ └── original.svg.dir │ │ │ └── .content.xml │ │ ├── catalog │ │ ├── .content.xml │ │ ├── Ball Bypass Bracelet.png │ │ │ ├── .content.xml │ │ │ └── _jcr_content │ │ │ │ └── renditions │ │ │ │ ├── original.png │ │ │ │ └── original.png.dir │ │ │ │ └── .content.xml │ │ ├── Color By The Yard Emerald Pendant.png │ │ │ ├── .content.xml │ │ │ └── _jcr_content │ │ │ │ └── renditions │ │ │ │ ├── original.png │ │ │ │ └── original.png.dir │ │ │ │ └── .content.xml │ │ ├── Diamond Hoop Single-Row Bangle.png │ │ │ ├── .content.xml │ │ │ └── _jcr_content │ │ │ │ └── renditions │ │ │ │ ├── original.png │ │ │ │ └── original.png.dir │ │ │ │ └── .content.xml │ │ ├── Diamond Vine Ring In Platinum.png │ │ │ ├── .content.xml │ │ │ └── _jcr_content │ │ │ │ └── renditions │ │ │ │ ├── original.png │ │ │ │ └── original.png.dir │ │ │ │ └── .content.xml │ │ ├── Layer Cake Necklace Set.png │ │ │ ├── .content.xml │ │ │ └── _jcr_content │ │ │ │ └── renditions │ │ │ │ ├── original.png │ │ │ │ └── original.png.dir │ │ │ │ └── .content.xml │ │ ├── Nesting Narrow Band Ring.png │ │ │ ├── .content.xml │ │ │ └── _jcr_content │ │ │ │ └── renditions │ │ │ │ ├── original.png │ │ │ │ └── original.png.dir │ │ │ │ └── .content.xml │ │ ├── Olive Leaf Band Ring.png │ │ │ ├── .content.xml │ │ │ └── _jcr_content │ │ │ │ └── renditions │ │ │ │ ├── original.png │ │ │ │ └── original.png.dir │ │ │ │ └── .content.xml │ │ ├── Olive Leaf Earrings.png │ │ │ ├── .content.xml │ │ │ └── _jcr_content │ │ │ │ └── renditions │ │ │ │ ├── original.png │ │ │ │ └── original.png.dir │ │ │ │ └── .content.xml │ │ ├── Olive Leaf Pendant.png │ │ │ ├── .content.xml │ │ │ └── _jcr_content │ │ │ │ └── renditions │ │ │ │ ├── original.png │ │ │ │ └── original.png.dir │ │ │ │ └── .content.xml │ │ ├── Our Catalog.png │ │ │ ├── .content.xml │ │ │ ├── LICENSE.md │ │ │ └── _jcr_content │ │ │ │ └── renditions │ │ │ │ ├── original.png │ │ │ │ └── original.png.dir │ │ │ │ └── .content.xml │ │ ├── Setting Engagement Ring in Silver.png │ │ │ ├── .content.xml │ │ │ └── _jcr_content │ │ │ │ └── renditions │ │ │ │ ├── original.png │ │ │ │ └── original.png.dir │ │ │ │ └── .content.xml │ │ ├── The Texture Ring Set.png │ │ │ ├── .content.xml │ │ │ └── _jcr_content │ │ │ │ └── renditions │ │ │ │ ├── original.png │ │ │ │ └── original.png.dir │ │ │ │ └── .content.xml │ │ ├── Viviana Diamond Engagement Ring.png │ │ │ ├── .content.xml │ │ │ └── _jcr_content │ │ │ │ └── renditions │ │ │ │ ├── original.png │ │ │ │ └── original.png.dir │ │ │ │ └── .content.xml │ │ └── diamond earing.png │ │ │ ├── .content.xml │ │ │ ├── LICENSE.md │ │ │ └── _jcr_content │ │ │ └── renditions │ │ │ ├── original.png │ │ │ └── original.png.dir │ │ │ └── .content.xml │ │ ├── homepage │ │ ├── .content.xml │ │ ├── Amadeus-collection.png │ │ │ ├── .content.xml │ │ │ ├── LICENSE.md │ │ │ └── _jcr_content │ │ │ │ └── renditions │ │ │ │ ├── original.png │ │ │ │ └── original.png.dir │ │ │ │ └── .content.xml │ │ ├── Ball Hook Earrings.png │ │ │ ├── .content.xml │ │ │ └── _jcr_content │ │ │ │ └── renditions │ │ │ │ ├── original.png │ │ │ │ └── original.png.dir │ │ │ │ └── .content.xml │ │ ├── Bracelets.png │ │ │ ├── .content.xml │ │ │ ├── LICENSE.md │ │ │ └── _jcr_content │ │ │ │ └── renditions │ │ │ │ ├── original.png │ │ │ │ └── original.png.dir │ │ │ │ └── .content.xml │ │ ├── Cushion.svg │ │ │ ├── .content.xml │ │ │ └── _jcr_content │ │ │ │ └── renditions │ │ │ │ ├── original.svg │ │ │ │ └── original.svg.dir │ │ │ │ └── .content.xml │ │ ├── Design-process.png │ │ │ ├── .content.xml │ │ │ ├── LICENSE.md │ │ │ └── _jcr_content │ │ │ │ └── renditions │ │ │ │ ├── original.png │ │ │ │ └── original.png.dir │ │ │ │ └── .content.xml │ │ ├── Diamond Vine Climber Earrings.png │ │ │ ├── .content.xml │ │ │ └── _jcr_content │ │ │ │ └── renditions │ │ │ │ ├── original.png │ │ │ │ └── original.png.dir │ │ │ │ └── .content.xml │ │ ├── Diamond ring.png │ │ │ ├── .content.xml │ │ │ ├── LICENSE.md │ │ │ └── _jcr_content │ │ │ │ └── renditions │ │ │ │ ├── original.png │ │ │ │ └── original.png.dir │ │ │ │ └── .content.xml │ │ ├── Diamonds By The Yard Bracelet.png │ │ │ ├── .content.xml │ │ │ └── _jcr_content │ │ │ │ └── renditions │ │ │ │ ├── original.png │ │ │ │ └── original.png.dir │ │ │ │ └── .content.xml │ │ ├── Emerald.svg │ │ │ ├── .content.xml │ │ │ └── _jcr_content │ │ │ │ └── renditions │ │ │ │ ├── original.svg │ │ │ │ └── original.svg.dir │ │ │ │ └── .content.xml │ │ ├── Hands with jewelry.png │ │ │ ├── .content.xml │ │ │ ├── LICENSE.md │ │ │ └── _jcr_content │ │ │ │ └── renditions │ │ │ │ ├── original.png │ │ │ │ └── original.png.dir │ │ │ │ └── .content.xml │ │ ├── Janet.png │ │ │ ├── .content.xml │ │ │ ├── LICENSE.md │ │ │ └── _jcr_content │ │ │ │ └── renditions │ │ │ │ ├── original.png │ │ │ │ └── original.png.dir │ │ │ │ └── .content.xml │ │ ├── Layer Cake Necklace Set.png │ │ │ ├── .content.xml │ │ │ └── _jcr_content │ │ │ │ └── renditions │ │ │ │ ├── original.png │ │ │ │ └── original.png.dir │ │ │ │ └── .content.xml │ │ ├── Logo 1.svg │ │ │ ├── .content.xml │ │ │ └── _jcr_content │ │ │ │ └── renditions │ │ │ │ ├── original.svg │ │ │ │ └── original.svg.dir │ │ │ │ └── .content.xml │ │ ├── Logo 2.svg │ │ │ ├── .content.xml │ │ │ └── _jcr_content │ │ │ │ └── renditions │ │ │ │ ├── original.svg │ │ │ │ └── original.svg.dir │ │ │ │ └── .content.xml │ │ ├── Logo 3.svg │ │ │ ├── .content.xml │ │ │ └── _jcr_content │ │ │ │ └── renditions │ │ │ │ ├── original.svg │ │ │ │ └── original.svg.dir │ │ │ │ └── .content.xml │ │ ├── Logo 4.svg │ │ │ ├── .content.xml │ │ │ └── _jcr_content │ │ │ │ └── renditions │ │ │ │ ├── original.svg │ │ │ │ └── original.svg.dir │ │ │ │ └── .content.xml │ │ ├── Logo 5.svg │ │ │ ├── .content.xml │ │ │ └── _jcr_content │ │ │ │ └── renditions │ │ │ │ ├── original.svg │ │ │ │ └── original.svg.dir │ │ │ │ └── .content.xml │ │ ├── Margot-collection.png │ │ │ ├── .content.xml │ │ │ ├── LICENSE.md │ │ │ └── _jcr_content │ │ │ │ └── renditions │ │ │ │ ├── original.png │ │ │ │ └── original.png.dir │ │ │ │ └── .content.xml │ │ ├── Marquise.svg │ │ │ ├── .content.xml │ │ │ └── _jcr_content │ │ │ │ └── renditions │ │ │ │ ├── original.svg │ │ │ │ └── original.svg.dir │ │ │ │ └── .content.xml │ │ ├── Necles-hero-image.png │ │ │ ├── .content.xml │ │ │ ├── LICENSE.md │ │ │ └── _jcr_content │ │ │ │ └── renditions │ │ │ │ ├── original.png │ │ │ │ └── original.png.dir │ │ │ │ └── .content.xml │ │ ├── Nesting Narrow Band Ring.png │ │ │ ├── .content.xml │ │ │ └── _jcr_content │ │ │ │ └── renditions │ │ │ │ ├── original.png │ │ │ │ └── original.png.dir │ │ │ │ └── .content.xml │ │ ├── Oval.svg │ │ │ ├── .content.xml │ │ │ └── _jcr_content │ │ │ │ └── renditions │ │ │ │ ├── original.svg │ │ │ │ └── original.svg.dir │ │ │ │ └── .content.xml │ │ ├── Pear.svg │ │ │ ├── .content.xml │ │ │ └── _jcr_content │ │ │ │ └── renditions │ │ │ │ ├── original.svg │ │ │ │ └── original.svg.dir │ │ │ │ └── .content.xml │ │ └── Round.svg │ │ │ ├── .content.xml │ │ │ └── _jcr_content │ │ │ └── renditions │ │ │ ├── original.svg │ │ │ └── original.svg.dir │ │ │ └── .content.xml │ │ └── product │ │ ├── .content.xml │ │ ├── Diamond Cut Ankle.png │ │ ├── .content.xml │ │ └── _jcr_content │ │ │ └── renditions │ │ │ ├── original.png │ │ │ └── original.png.dir │ │ │ └── .content.xml │ │ ├── Diamond Vine Ring In Platinum.png │ │ ├── .content.xml │ │ └── _jcr_content │ │ │ └── renditions │ │ │ ├── original.png │ │ │ └── original.png.dir │ │ │ └── .content.xml │ │ ├── Ring in a hand.png │ │ ├── .content.xml │ │ ├── LICENSE.md │ │ └── _jcr_content │ │ │ └── renditions │ │ │ ├── original.png │ │ │ └── original.png.dir │ │ │ └── .content.xml │ │ ├── Silver Ring.png │ │ ├── .content.xml │ │ ├── LICENSE.md │ │ └── _jcr_content │ │ │ └── renditions │ │ │ ├── original.png │ │ │ └── original.png.dir │ │ │ └── .content.xml │ │ ├── The Texture Ring Set.png │ │ ├── .content.xml │ │ └── _jcr_content │ │ │ └── renditions │ │ │ ├── original.png │ │ │ └── original.png.dir │ │ │ └── .content.xml │ │ ├── Viviana Diamond Engagement Ring.png │ │ ├── .content.xml │ │ └── _jcr_content │ │ │ └── renditions │ │ │ ├── original.png │ │ │ └── original.png.dir │ │ │ └── .content.xml │ │ ├── drop-a-hint.svg │ │ ├── .content.xml │ │ └── _jcr_content │ │ │ └── renditions │ │ │ ├── original.svg │ │ │ └── original.svg.dir │ │ │ └── .content.xml │ │ ├── payment-plans.svg │ │ ├── .content.xml │ │ └── _jcr_content │ │ │ └── renditions │ │ │ ├── original.svg │ │ │ └── original.svg.dir │ │ │ └── .content.xml │ │ └── ring-resizing.svg │ │ ├── .content.xml │ │ └── _jcr_content │ │ └── renditions │ │ ├── original.svg │ │ └── original.svg.dir │ │ └── .content.xml │ └── pages │ ├── .content.xml │ ├── About │ └── .content.xml │ ├── Catalog │ └── .content.xml │ ├── Homepage │ └── .content.xml │ └── Products │ └── .content.xml ├── distribution ├── pom.xml └── src │ └── main │ ├── container │ └── bin │ │ └── launch.sh │ └── features │ ├── docker │ └── docker.json │ ├── howlite.json │ ├── kyanite.json │ ├── luna-custom-code.json │ ├── luna-low-code.json │ ├── puresight.json │ ├── starter.json │ ├── streamx-repoinit.txt │ └── streamx.json ├── mvnw ├── mvnw.cmd ├── pom.xml └── tests ├── README.md ├── content ├── pom.xml └── src │ └── main │ └── content │ ├── META-INF │ └── vault │ │ └── filter.xml │ └── jcr_root │ └── content │ ├── low-code-luna-test │ ├── .content.xml │ ├── assets │ │ ├── .content.xml │ │ └── images │ │ │ ├── .content.xml │ │ │ └── quote │ │ │ ├── .content.xml │ │ │ └── Janet.png │ │ │ ├── .content.xml │ │ │ ├── LICENSE.md │ │ │ └── _jcr_content │ │ │ └── renditions │ │ │ ├── original.png │ │ │ └── original.png.dir │ │ │ └── .content.xml │ └── pages │ │ ├── .content.xml │ │ ├── Accordion │ │ └── .content.xml │ │ ├── Carousel │ │ └── .content.xml │ │ └── Quote │ │ └── .content.xml │ └── starter-test │ ├── .content.xml │ ├── assets │ └── .content.xml │ └── pages │ ├── .content.xml │ └── LunaTitle │ └── .content.xml ├── end-to-end ├── .eslintrc.json ├── .gitignore ├── .node_version ├── .prettierrc.json ├── backstop.js ├── backstop_data │ └── engine_scripts │ │ ├── cookies.json │ │ ├── createSession.js │ │ ├── createSession.sh │ │ ├── imageStub.jpg │ │ ├── playwright │ │ ├── clickAndHoverHelper.js │ │ ├── interceptImages.js │ │ ├── loadCookies.js │ │ ├── onBefore.js │ │ ├── onReady.js │ │ ├── overrideCSS.js │ │ └── preventLazyLoading.js │ │ ├── puppet │ │ ├── clickAndHoverHelper.js │ │ ├── ignoreCSP.js │ │ ├── interceptImages.js │ │ ├── loadCookies.js │ │ ├── onBefore.js │ │ ├── onReady.js │ │ ├── overrideCSS.js │ │ └── preventLazyLoading.js │ │ └── setSessionCookie.js ├── cypress.config.ts ├── cypress.env.json ├── jest.config.ts ├── package-lock.json ├── package.json ├── pom.xml ├── src │ ├── baseUrl.js │ └── main │ │ └── features │ │ └── starter_tests_content.json ├── support │ ├── commands.ts │ ├── index.ts │ └── types.ts ├── tests │ ├── accordion.cy.ts │ ├── carousel.cy.ts │ ├── lunatitle.cy.ts │ └── quote.cy.ts ├── tsconfig.json └── utils │ └── content.publish │ ├── content.publish.api.ts │ ├── content.publish.cli.ts │ ├── content.publish.request.ts │ ├── content.publish.types.ts │ └── index.ts └── pom.xml /.dockerignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .vscode 3 | .DS_Store 4 | *.iml 5 | **/target 6 | 7 | **/node 8 | **/node_modules 9 | **/dist 10 | **/launcher 11 | .projects 12 | 13 | # Not needed in build 14 | assets 15 | environment 16 | -------------------------------------------------------------------------------- /COPYRIGHT: -------------------------------------------------------------------------------- 1 | Copyright (C) 2023 Dynamic Solutions sp. z o.o. sp. k. All rights reserved. 2 | 3 | This file is licensed to you under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. You may obtain a copy 5 | of the License at http://www.apache.org/licenses/LICENSE-2.0 6 | -------------------------------------------------------------------------------- /NOTICE.md: -------------------------------------------------------------------------------- 1 | Starter contains assets not created by Dynamic Solutions that may have different license. 2 | 3 | The base level of the repository is licensed under Apache 2.0. There are separate license files (LICENSE) for each directory which is restricted by different license. -------------------------------------------------------------------------------- /applications/luna-custom-code/backend/bnd.bnd: -------------------------------------------------------------------------------- 1 | Sling-Bundle-Resources: /apps/luna 2 | -------------------------------------------------------------------------------- /applications/luna-custom-code/backend/src/main/resources/apps/luna/.content.json: -------------------------------------------------------------------------------- 1 | {"sling:resourceType": "ws:Application"} -------------------------------------------------------------------------------- /applications/luna-custom-code/backend/src/main/resources/apps/luna/components/lunatitle/.content.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Luna Title", 3 | "sling:resourceType": "ws:Component", 4 | "sling:resourceSuperType": "howlite/components/title" 5 | } -------------------------------------------------------------------------------- /applications/luna-custom-code/frontend/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | "@babel/typescript" 4 | ], 5 | "plugins": [ 6 | "@babel/plugin-proposal-class-properties", 7 | "@babel/plugin-proposal-object-rest-spread" 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /applications/luna-custom-code/frontend/.gitignore: -------------------------------------------------------------------------------- 1 | # These are some examples of commonly ignored file patterns. 2 | # You should customize this list as applicable to your project. 3 | # Learn more about .gitignore: 4 | # https://www.atlassian.com/git/tutorials/saving-changes/gitignore 5 | 6 | # Front-end files generated by ui.frontend 7 | /src/main/resources/**/web_root/* 8 | /src/main/resources/**/author/* 9 | -------------------------------------------------------------------------------- /applications/luna-custom-code/frontend/bnd.bnd: -------------------------------------------------------------------------------- 1 | Sling-Bundle-Resources: /apps/luna/web_root;/apps/luna/author 2 | WebSight-Apps-WebRoot: /apps/luna/web_root 3 | -------------------------------------------------------------------------------- /applications/luna-custom-code/frontend/src/resources/fonts/ds-font/ds-iconfonts.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/applications/luna-custom-code/frontend/src/resources/fonts/ds-font/ds-iconfonts.eot -------------------------------------------------------------------------------- /applications/luna-custom-code/frontend/src/resources/fonts/ds-font/ds-iconfonts.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/applications/luna-custom-code/frontend/src/resources/fonts/ds-font/ds-iconfonts.ttf -------------------------------------------------------------------------------- /applications/luna-custom-code/frontend/src/resources/fonts/ds-font/ds-iconfonts.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/applications/luna-custom-code/frontend/src/resources/fonts/ds-font/ds-iconfonts.woff -------------------------------------------------------------------------------- /applications/luna-custom-code/frontend/src/resources/fonts/ds-font/ds-iconfonts.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/applications/luna-custom-code/frontend/src/resources/fonts/ds-font/ds-iconfonts.woff2 -------------------------------------------------------------------------------- /applications/luna-low-code/backend/bnd.bnd: -------------------------------------------------------------------------------- 1 | Sling-Bundle-Resources: /apps/luna/lowcode 2 | -------------------------------------------------------------------------------- /applications/luna-low-code/backend/src/main/resources/apps/luna/lowcode/.content.json: -------------------------------------------------------------------------------- 1 | {"sling:resourceType": "ws:Application"} -------------------------------------------------------------------------------- /applications/luna-low-code/backend/src/main/resources/apps/luna/lowcode/components/accordion/.content.json: -------------------------------------------------------------------------------- 1 | { 2 | "isContainer": true, 3 | "group": "Luna Low Code Components", 4 | "allowedComponents": ["/apps/luna/lowcode/components/accordion/accordionitem"], 5 | "sling:resourceType": "ws:Component", 6 | "title": "Accordion" 7 | } -------------------------------------------------------------------------------- /applications/luna-low-code/backend/src/main/resources/apps/luna/lowcode/components/accordion/accordioncontent/.content.json: -------------------------------------------------------------------------------- 1 | { 2 | "isContainer": true, 3 | "group": ".hidden", 4 | "allowedComponents": [ 5 | "Kyanite Columns", 6 | "Kyanite Components", 7 | "Kyanite Elements", 8 | "Kyanite Layouts" 9 | ], 10 | "sling:resourceType": "ws:Component", 11 | "title": "Accordion Item Content" 12 | } -------------------------------------------------------------------------------- /applications/luna-low-code/backend/src/main/resources/apps/luna/lowcode/components/accordion/accordionitem/.content.json: -------------------------------------------------------------------------------- 1 | { 2 | "group": "Kyanite sub-components", 3 | "sling:resourceType": "ws:Component", 4 | "title": "Accordion item" 5 | } -------------------------------------------------------------------------------- /applications/luna-low-code/backend/src/main/resources/apps/luna/lowcode/components/accordion/accordionitem/template/.content.json: -------------------------------------------------------------------------------- 1 | { 2 | "jcr:primaryType": "nt:unstructured", 3 | "header": "Accordion header", 4 | "accordioncontent": { 5 | "jcr:primaryType": "nt:unstructured", 6 | "sling:resourceType": "luna/lowcode/components/accordion/accordioncontent" 7 | } 8 | } -------------------------------------------------------------------------------- /applications/luna-low-code/backend/src/main/resources/apps/luna/lowcode/components/carousel/.content.json: -------------------------------------------------------------------------------- 1 | { 2 | "isContainer": true, 3 | "group": "Luna Low Code Components", 4 | "sling:resourceType": "ws:Component", 5 | "allowedComponents": "/apps/luna/lowcode/components/carousel/carouselitem", 6 | "title": "Carousel" 7 | } -------------------------------------------------------------------------------- /applications/luna-low-code/backend/src/main/resources/apps/luna/lowcode/components/carousel/carouselitem/.content.json: -------------------------------------------------------------------------------- 1 | { 2 | "group": "Luna sub-components", 3 | "sling:resourceType": "ws:Component", 4 | "title": "Carousel Item" 5 | } -------------------------------------------------------------------------------- /applications/luna-low-code/backend/src/main/resources/apps/luna/lowcode/components/carousel/carouselitem/template/.content.json: -------------------------------------------------------------------------------- 1 | { 2 | "jcr:primaryType": "nt:unstructured", 3 | "card": { 4 | "jcr:primaryType": "nt:unstructured", 5 | "sling:resourceType": "kyanite/common/components/card" 6 | } 7 | } -------------------------------------------------------------------------------- /applications/luna-low-code/backend/src/main/resources/apps/luna/lowcode/components/page/.content.json: -------------------------------------------------------------------------------- 1 | { 2 | "sling:resourceSuperType": "kyanite/common/components/page", 3 | "group": ".hidden", 4 | "sling:resourceType": "ws:Component", 5 | "title": "Low code Luna page" 6 | } -------------------------------------------------------------------------------- /applications/luna-low-code/backend/src/main/resources/apps/luna/lowcode/components/page/head-project-libs.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /applications/luna-low-code/backend/src/main/resources/apps/luna/lowcode/components/quote/.content.json: -------------------------------------------------------------------------------- 1 | { 2 | "group": "Luna Low Code Components", 3 | "sling:resourceType": "ws:Component", 4 | "title": "Quote" 5 | } -------------------------------------------------------------------------------- /applications/luna-low-code/backend/src/main/resources/apps/luna/lowcode/templates/articlepage/.content.json: -------------------------------------------------------------------------------- 1 | { 2 | "allowedChildren": ["/apps/luna/lowcode/templates/articlepage"], 3 | "sling:resourceType": "ws:PageTemplate", 4 | "title": "Article page" 5 | } -------------------------------------------------------------------------------- /applications/luna-low-code/backend/src/main/resources/apps/luna/lowcode/templates/homepage/.content.json: -------------------------------------------------------------------------------- 1 | { 2 | "allowedChildren": ["/apps/luna/lowcode/templates/articlepage"], 3 | "sling:resourceType": "ws:PageTemplate", 4 | "sling:resourceSuperType": "kyanite/common/templates/homepage", 5 | "title": "Home page" 6 | } -------------------------------------------------------------------------------- /applications/luna-low-code/backend/src/main/resources/apps/luna/lowcode/templates/pagesspace/.content.json: -------------------------------------------------------------------------------- 1 | { 2 | "allowedChildren": ["/apps/luna/lowcode/templates/homepage", "/apps/luna/lowcode/templates/articlepage"], 3 | "sling:resourceType": "ws:PagesTemplate", 4 | "title": "Low Code Luna pages" 5 | } -------------------------------------------------------------------------------- /applications/luna-low-code/backend/src/test/resources/carousel.json: -------------------------------------------------------------------------------- 1 | { 2 | "default": { 3 | "jcr:primaryType": "nt:unstructured", 4 | "sling:resourceType": "luna/lowcode/components/carousel" 5 | }, 6 | "complex": { 7 | "jcr:primaryType": "nt:unstructured", 8 | "sling:resourceType": "luna/lowcode/components/carousel", 9 | "slidesToShow": 5 10 | } 11 | } -------------------------------------------------------------------------------- /applications/luna-low-code/frontend/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | "@babel/typescript" 4 | ], 5 | "plugins": [ 6 | "@babel/plugin-proposal-class-properties", 7 | "@babel/plugin-proposal-object-rest-spread" 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /applications/luna-low-code/frontend/.gitignore: -------------------------------------------------------------------------------- 1 | # These are some examples of commonly ignored file patterns. 2 | # You should customize this list as applicable to your project. 3 | # Learn more about .gitignore: 4 | # https://www.atlassian.com/git/tutorials/saving-changes/gitignore 5 | 6 | # Front-end files generated by ui.frontend 7 | /src/main/resources/**/web_root/* 8 | -------------------------------------------------------------------------------- /applications/luna-low-code/frontend/bnd.bnd: -------------------------------------------------------------------------------- 1 | Sling-Bundle-Resources: /apps/luna/lowcode/web_root 2 | WebSight-Apps-WebRoot: /apps/luna/lowcode/web_root 3 | -------------------------------------------------------------------------------- /applications/puresight/backend/README.md: -------------------------------------------------------------------------------- 1 | 2 | Module contains PureSight application Backe-End - components, tempalates, etc. and Java code. -------------------------------------------------------------------------------- /applications/puresight/backend/bnd.bnd: -------------------------------------------------------------------------------- 1 | Sling-Bundle-Resources: /apps/puresight,/apps/kyanite 2 | Include-Resource: pebble-[0-9.]*.jar;lib:=true,unbescape-*.jar;lib:=true,jakarta.servlet-api-*.jar;lib:=true,caffeine-*.jar;lib:=true 3 | -------------------------------------------------------------------------------- /applications/puresight/backend/src/main/java/pl/ds/starter/puresight/cms/models/package-info.java: -------------------------------------------------------------------------------- 1 | @Version("1.0.0") 2 | package pl.ds.starter.puresight.cms.models; 3 | 4 | import org.osgi.annotation.versioning.Version; -------------------------------------------------------------------------------- /applications/puresight/backend/src/main/java/pl/ds/starter/puresight/cms/services/NewsletterConfigService.java: -------------------------------------------------------------------------------- 1 | package pl.ds.starter.puresight.cms.services; 2 | 3 | public interface NewsletterConfigService { 4 | String getNewsletterUrl(); 5 | } 6 | -------------------------------------------------------------------------------- /applications/puresight/backend/src/main/java/pl/ds/starter/puresight/cms/services/TemplateBasedComponentRuntimeConfigService.java: -------------------------------------------------------------------------------- 1 | package pl.ds.starter.puresight.cms.services; 2 | 3 | public interface TemplateBasedComponentRuntimeConfigService { 4 | 5 | String getFragmentsBaseDir(); 6 | 7 | String getProductBasePath(); 8 | } 9 | -------------------------------------------------------------------------------- /applications/puresight/backend/src/main/resources/apps/kyanite/common/components/container/.content.json: -------------------------------------------------------------------------------- 1 | { 2 | "sling:resourceType": "ws:Component", 3 | "sling:resourceSuperType": "/libs/kyanite/common/components/container", 4 | "title": "Container", 5 | "allowedComponents": [ 6 | "Kyanite Columns", 7 | "Kyanite Components", 8 | "Kyanite Elements", 9 | "Kyanite Layouts" 10 | ] 11 | } -------------------------------------------------------------------------------- /applications/puresight/backend/src/main/resources/apps/kyanite/common/components/hero/.content.json: -------------------------------------------------------------------------------- 1 | { 2 | "sling:resourceType": "ws:Component", 3 | "sling:resourceSuperType": "/libs/kyanite/common/components/hero", 4 | "title": "Hero", 5 | "allowedComponents": [ 6 | "Kyanite Columns", 7 | "Kyanite Components", 8 | "Kyanite Elements", 9 | "Kyanite Layouts" 10 | ] 11 | } -------------------------------------------------------------------------------- /applications/puresight/backend/src/main/resources/apps/puresight/.content.json: -------------------------------------------------------------------------------- 1 | { 2 | "sling:resourceType": "ws:Application" 3 | } -------------------------------------------------------------------------------- /applications/puresight/backend/src/main/resources/apps/puresight/components/blogarticlepage/.content.json: -------------------------------------------------------------------------------- 1 | { 2 | "sling:resourceType": "ws:Component", 3 | "sling:resourceSuperType": "/libs/kyanite/blogs/components/blogarticlepage", 4 | "title": "Page", 5 | "group": ".hidden" 6 | } -------------------------------------------------------------------------------- /applications/puresight/backend/src/main/resources/apps/puresight/components/fragmentpage/.content.json: -------------------------------------------------------------------------------- 1 | { 2 | "sling:resourceType": "ws:Component", 3 | "sling:resourceSuperType": "/libs/kyanite/fragments/components/page", 4 | "title": "Page", 5 | "group": ".hidden" 6 | } -------------------------------------------------------------------------------- /applications/puresight/backend/src/main/resources/apps/puresight/components/imagecarousel/.content.json: -------------------------------------------------------------------------------- 1 | { 2 | "group": "Kyanite Elements", 3 | "sling:resourceType": "ws:Component", 4 | "title": "Image Carousel", 5 | "isContainer": true, 6 | "allowedComponents": "/apps/kyanite/common/components/image" 7 | } -------------------------------------------------------------------------------- /applications/puresight/backend/src/main/resources/apps/puresight/components/imagecarousel/template/.content.json: -------------------------------------------------------------------------------- 1 | { 2 | "sling:resourceType": "puresight/components/imagecarousel", 3 | "jcr:primaryType": "nt:unstructured", 4 | "thumbnailSize": "is-small-size" 5 | } 6 | 7 | -------------------------------------------------------------------------------- /applications/puresight/backend/src/main/resources/apps/puresight/components/layouts/reviews/.content.json: -------------------------------------------------------------------------------- 1 | { 2 | "sling:resourceType": "ws:Component", 3 | "isContainer": true, 4 | "isLayout": true, 5 | "group": "PureSight Components", 6 | "instanceResourceType": "kyanite/common/components/tiles", 7 | "title": "Reviews Layout" 8 | } -------------------------------------------------------------------------------- /applications/puresight/backend/src/main/resources/apps/puresight/components/layouts/vendors/.content.json: -------------------------------------------------------------------------------- 1 | { 2 | "sling:resourceType": "ws:Component", 3 | "isContainer": true, 4 | "isLayout": true, 5 | "group": "PureSight Components", 6 | "instanceResourceType": "kyanite/common/components/container", 7 | "title": "Vendors List Modal" 8 | } -------------------------------------------------------------------------------- /applications/puresight/backend/src/main/resources/apps/puresight/components/newsletter/.content.json: -------------------------------------------------------------------------------- 1 | { 2 | "sling:resourceType": "ws:Component", 3 | "title": "Newsletter", 4 | "group": "PureSight Components" 5 | } -------------------------------------------------------------------------------- /applications/puresight/backend/src/main/resources/apps/puresight/components/newsletter/template/.content.json: -------------------------------------------------------------------------------- 1 | { 2 | "jcr:primaryType": "nt:unstructured", 3 | "placeholder": "Type your e-mail...", 4 | "buttonText": "Subscribe" 5 | } -------------------------------------------------------------------------------- /applications/puresight/backend/src/main/resources/apps/puresight/components/page/.content.json: -------------------------------------------------------------------------------- 1 | { 2 | "sling:resourceType": "ws:Component", 3 | "sling:resourceSuperType": "/libs/kyanite/common/components/page", 4 | "title": "Page", 5 | "group": ".hidden" 6 | } -------------------------------------------------------------------------------- /applications/puresight/backend/src/main/resources/apps/puresight/components/product/carousel/.content.json: -------------------------------------------------------------------------------- 1 | { 2 | "sling:resourceType": "ws:Component", 3 | "title": "Products carousel", 4 | "group": "PureSight Components" 5 | } -------------------------------------------------------------------------------- /applications/puresight/backend/src/main/resources/apps/puresight/components/product/carousel/template/.content.json: -------------------------------------------------------------------------------- 1 | { 2 | "template": "/apps/puresight/components/templates/carousel.html", 3 | "fragmentIdPrefix": "collected:products:cheapest-by-category:" 4 | } 5 | 6 | -------------------------------------------------------------------------------- /applications/puresight/backend/src/main/resources/apps/puresight/components/product/details/.content.json: -------------------------------------------------------------------------------- 1 | { 2 | "sling:resourceType": "ws:Component", 3 | "title": "Product details", 4 | "group": "PureSight Components" 5 | } -------------------------------------------------------------------------------- /applications/puresight/backend/src/main/resources/apps/puresight/components/product/details/template/.content.json: -------------------------------------------------------------------------------- 1 | { 2 | "template": "/apps/puresight/components/templates/details.html" 3 | } 4 | -------------------------------------------------------------------------------- /applications/puresight/backend/src/main/resources/apps/puresight/components/product/listing/.content.json: -------------------------------------------------------------------------------- 1 | { 2 | "sling:resourceType": "ws:Component", 3 | "title": "Products listing", 4 | "group": "PureSight Components" 5 | } -------------------------------------------------------------------------------- /applications/puresight/backend/src/main/resources/apps/puresight/components/product/listing/template/.content.json: -------------------------------------------------------------------------------- 1 | { 2 | "template": "/apps/puresight/components/templates/tiles.html", 3 | "fragmentIdPrefix": "collected:products:cheapest-by-category:" 4 | } 5 | 6 | -------------------------------------------------------------------------------- /applications/puresight/backend/src/main/resources/apps/puresight/components/rating/.content.json: -------------------------------------------------------------------------------- 1 | { 2 | "sling:resourceType": "ws:Component", 3 | "title": "Rating", 4 | "group": "PureSight Components" 5 | } -------------------------------------------------------------------------------- /applications/puresight/backend/src/main/resources/apps/puresight/components/search/.content.json: -------------------------------------------------------------------------------- 1 | { 2 | "sling:resourceType": "ws:Component", 3 | "title": "Search", 4 | "group": "PureSight Components" 5 | } -------------------------------------------------------------------------------- /applications/puresight/backend/src/main/resources/apps/puresight/components/search/search.html: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /applications/puresight/backend/src/main/resources/apps/puresight/components/separator/.content.json: -------------------------------------------------------------------------------- 1 | { 2 | "sling:resourceType": "ws:Component", 3 | "title": "Separator", 4 | "group": "PureSight Components" 5 | } -------------------------------------------------------------------------------- /applications/puresight/backend/src/main/resources/apps/puresight/components/separator/separator.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 | -------------------------------------------------------------------------------- /applications/puresight/backend/src/main/resources/apps/puresight/components/templateif/.content.json: -------------------------------------------------------------------------------- 1 | { 2 | "sling:resourceType": "ws:Component", 3 | "title": "Template if", 4 | "group": "PureSight Template Components", 5 | "isContainer": true, 6 | "allowedComponents": [ 7 | "Kyanite Columns", 8 | "Kyanite Components", 9 | "Kyanite Elements", 10 | "Kyanite Layouts" 11 | ] 12 | } -------------------------------------------------------------------------------- /applications/puresight/backend/src/main/resources/apps/puresight/components/templateimage/.content.json: -------------------------------------------------------------------------------- 1 | { 2 | "sling:resourceType": "ws:Component", 3 | "title": "Template image", 4 | "group": "PureSight Template Components" 5 | } -------------------------------------------------------------------------------- /applications/puresight/backend/src/main/resources/apps/puresight/components/templateiterator/.content.json: -------------------------------------------------------------------------------- 1 | { 2 | "sling:resourceType": "ws:Component", 3 | "title": "Template iterator", 4 | "group": "PureSight Template Components", 5 | "isContainer": true, 6 | "allowedComponents": [ 7 | "Kyanite Columns", 8 | "Kyanite Components", 9 | "Kyanite Elements", 10 | "Kyanite Layouts" 11 | ] 12 | } -------------------------------------------------------------------------------- /applications/puresight/backend/src/main/resources/apps/puresight/components/templatepage/.content.json: -------------------------------------------------------------------------------- 1 | { 2 | "sling:resourceType": "ws:Component", 3 | "sling:resourceSuperType": "puresight/components/page", 4 | "title": "Template Page", 5 | "group": ".hidden" 6 | } -------------------------------------------------------------------------------- /applications/puresight/backend/src/main/resources/apps/puresight/templates/basicpage/.content.json: -------------------------------------------------------------------------------- 1 | { 2 | "sling:resourceType": "ws:PageTemplate", 3 | "description": "Template for the regular page", 4 | "title": "Atricle page", 5 | "allowedChildren": [ 6 | "/apps/puresight/templates/basicpage", 7 | "/apps/puresight/templates/structurepage" 8 | ] 9 | } -------------------------------------------------------------------------------- /applications/puresight/backend/src/main/resources/apps/puresight/templates/blogarticlepage/.content.json: -------------------------------------------------------------------------------- 1 | { 2 | "sling:resourceType": "ws:PageTemplate", 3 | "title": "Blog article page", 4 | "description": "Template for the blog article page", 5 | "sling:resourceSuperType": "/libs/kyanite/blogs/templates/blogarticlepage" 6 | } -------------------------------------------------------------------------------- /applications/puresight/backend/src/main/resources/apps/puresight/templates/blogcategorypage/.content.json: -------------------------------------------------------------------------------- 1 | { 2 | "sling:resourceType": "ws:PageTemplate", 3 | "title": "Blog category page", 4 | "description": "Empty page allows to create nested blog pages", 5 | "allowedChildren": [ 6 | "/apps/puresight/templates/blogarticlepage", 7 | "/apps/puresight/templates/blogcategorypage" 8 | ] 9 | } -------------------------------------------------------------------------------- /applications/puresight/backend/src/main/resources/apps/puresight/templates/blogcategorypage/initial/.content.json: -------------------------------------------------------------------------------- 1 | { 2 | "jcr:primaryType": "ws:Page", 3 | "jcr:content": { 4 | "jcr:primaryType": "ws:PageContent", 5 | "sling:resourceType": "puresight/components/page", 6 | "pagecontainer": { 7 | "sling:resourceType": "kyanite/common/components/fixedcontainer" 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /applications/puresight/backend/src/main/resources/apps/puresight/templates/fragmentpage/.content.json: -------------------------------------------------------------------------------- 1 | { 2 | "sling:resourceType": "ws:PageTemplate", 3 | "title": "Experience fragment page", 4 | "description": "Template for the experinece fragment page" 5 | } -------------------------------------------------------------------------------- /applications/puresight/backend/src/main/resources/apps/puresight/templates/fragmentpage/initial/.content.json: -------------------------------------------------------------------------------- 1 | { 2 | "jcr:primaryType": "ws:Page", 3 | "jcr:content": { 4 | "jcr:primaryType": "ws:PageContent", 5 | "sling:resourceType": "puresight/components/fragmentpage", 6 | "container": {"sling:resourceType": "kyanite/common/components/container"} 7 | } 8 | } -------------------------------------------------------------------------------- /applications/puresight/backend/src/main/resources/apps/puresight/templates/fragmentspage/.content.json: -------------------------------------------------------------------------------- 1 | { 2 | "sling:resourceType": "ws:PageTemplate", 3 | "title": "Experience fragments structure", 4 | "description": "Empty page allows to create nested pages with experience fragments", 5 | "allowedChildren": [ 6 | "/apps/puresight/templates/fragmentspage", 7 | "/apps/puresight/templates/fragmentpage"] 8 | } -------------------------------------------------------------------------------- /applications/puresight/backend/src/main/resources/apps/puresight/templates/fragmentspage/initial/.content.json: -------------------------------------------------------------------------------- 1 | { 2 | "jcr:primaryType": "ws:Page", 3 | "jcr:content": { 4 | "jcr:primaryType": "ws:PageContent", 5 | "sling:resourceType": "puresight/components/page", 6 | "container": {"sling:resourceType": "kyanite/common/components/container/fixedcontainer"} 7 | } 8 | } -------------------------------------------------------------------------------- /applications/puresight/backend/src/main/resources/apps/puresight/templates/homepage/.content.json: -------------------------------------------------------------------------------- 1 | { 2 | "sling:resourceType": "ws:PageTemplate", 3 | "sling:resourceSuperType": "/libs/kyanite/common/templates/homepage", 4 | "title": "Home Page", 5 | "description": "Template for the main page", 6 | "allowedChildren": [ 7 | "/apps/puresight/templates/basicpage", 8 | "/apps/puresight/templates/structurepage" 9 | ] 10 | } -------------------------------------------------------------------------------- /applications/puresight/backend/src/main/resources/apps/puresight/templates/structurepage/initial/.content.json: -------------------------------------------------------------------------------- 1 | { 2 | "jcr:primaryType": "ws:Page", 3 | "jcr:content": { 4 | "jcr:primaryType": "ws:PageContent", 5 | "sling:resourceType": "puresight/components/page", 6 | "pagecontainer": {"sling:resourceType": "kyanite/common/components/container/fixedcontainer"} 7 | } 8 | } -------------------------------------------------------------------------------- /applications/puresight/backend/src/main/resources/apps/puresight/templates/templatepage/.content.json: -------------------------------------------------------------------------------- 1 | { 2 | "sling:resourceType": "ws:PageTemplate", 3 | "title": "Template page", 4 | "description": "Template used to generate pages", 5 | "allowedChildren": [ 6 | "/apps/puresight/templates/templatepage" 7 | ] 8 | } -------------------------------------------------------------------------------- /applications/puresight/backend/src/main/resources/apps/puresight/templates/templatepage/initial/.content.json: -------------------------------------------------------------------------------- 1 | { 2 | "jcr:primaryType": "ws:Page", 3 | "jcr:content": { 4 | "jcr:primaryType": "ws:PageContent", 5 | "sling:resourceType": "puresight/components/templatepage", 6 | "pagecontainer": {"sling:resourceType": "kyanite/common/components/pagecontainer"} 7 | } 8 | } -------------------------------------------------------------------------------- /applications/puresight/backend/src/main/resources/apps/puresight/templates/templatesrootpage/.content.json: -------------------------------------------------------------------------------- 1 | { 2 | "sling:resourceType": "ws:PageTemplate", 3 | "title": "Templates root page", 4 | "description": "Templates can be created under this page. Should be created at 'All pages' root and named 'templates'", 5 | "allowedChildren": [ 6 | "/apps/puresight/templates/templatepage" 7 | ] 8 | } -------------------------------------------------------------------------------- /applications/puresight/backend/src/main/resources/apps/puresight/templates/templatesrootpage/initial/.content.json: -------------------------------------------------------------------------------- 1 | { 2 | "jcr:primaryType": "ws:Page", 3 | "jcr:content": { 4 | "jcr:primaryType": "ws:PageContent", 5 | "sling:resourceType": "puresight/components/page", 6 | "pagecontainer": {"sling:resourceType": "kyanite/common/components/container/fixedcontainer"} 7 | } 8 | } -------------------------------------------------------------------------------- /applications/puresight/content/README.md: -------------------------------------------------------------------------------- 1 | # Initial content 2 | Contains sample initial content for PureSight application 3 | -------------------------------------------------------------------------------- /applications/puresight/content/src/main/content/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Content-Package-Id: pl.ds.kyanite:webflighs_homepage_content:1.0 3 | Content-Package-Roots: /content/puresight 4 | Content-Package-Type: content 5 | 6 | -------------------------------------------------------------------------------- /applications/puresight/content/src/main/content/META-INF/vault/filter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /applications/puresight/content/src/main/content/jcr_root/content/puresight/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Blogs/SofiaSilva (1).jpg/_jcr_content/renditions/original.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Blogs/SofiaSilva (1).jpg/_jcr_content/renditions/original.jpg -------------------------------------------------------------------------------- /applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Blogs/bench-accounting-8D2k7a3wMKQ-unsplash.jpg/_jcr_content/renditions/original.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Blogs/bench-accounting-8D2k7a3wMKQ-unsplash.jpg/_jcr_content/renditions/original.jpg -------------------------------------------------------------------------------- /applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Blogs/clean-apartment.jpeg/_jcr_content/renditions/original.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Blogs/clean-apartment.jpeg/_jcr_content/renditions/original.jpeg -------------------------------------------------------------------------------- /applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Blogs/decluttering.jpeg/_jcr_content/renditions/original.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Blogs/decluttering.jpeg/_jcr_content/renditions/original.jpeg -------------------------------------------------------------------------------- /applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Blogs/eco-friendly.jpeg/_jcr_content/renditions/original.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Blogs/eco-friendly.jpeg/_jcr_content/renditions/original.jpeg -------------------------------------------------------------------------------- /applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Blogs/element5-digital-2cwqJgtQ3D0-unsplash.jpg/_jcr_content/renditions/original.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Blogs/element5-digital-2cwqJgtQ3D0-unsplash.jpg/_jcr_content/renditions/original.jpg -------------------------------------------------------------------------------- /applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Blogs/hacks-tidy.jpeg/_jcr_content/renditions/original.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Blogs/hacks-tidy.jpeg/_jcr_content/renditions/original.jpeg -------------------------------------------------------------------------------- /applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Blogs/home-organisation.jpeg/_jcr_content/renditions/original.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Blogs/home-organisation.jpeg/_jcr_content/renditions/original.jpeg -------------------------------------------------------------------------------- /applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Blogs/micheile-henderson-EOJqV9lZNDk-unsplash.jpg/_jcr_content/renditions/original.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Blogs/micheile-henderson-EOJqV9lZNDk-unsplash.jpg/_jcr_content/renditions/original.jpg -------------------------------------------------------------------------------- /applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Blogs/minimalist-design.jpeg/_jcr_content/renditions/original.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Blogs/minimalist-design.jpeg/_jcr_content/renditions/original.jpeg -------------------------------------------------------------------------------- /applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Blogs/shelf-organisation.jpeg/_jcr_content/renditions/original.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Blogs/shelf-organisation.jpeg/_jcr_content/renditions/original.jpeg -------------------------------------------------------------------------------- /applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Blogs/small-space.webp/_jcr_content/renditions/original.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Blogs/small-space.webp/_jcr_content/renditions/original.webp -------------------------------------------------------------------------------- /applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Blogs/spacejoy-umAXneH4GhA-unsplash.jpg/_jcr_content/renditions/original.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Blogs/spacejoy-umAXneH4GhA-unsplash.jpg/_jcr_content/renditions/original.jpg -------------------------------------------------------------------------------- /applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Blogs/zen-space.jpeg/_jcr_content/renditions/original.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Blogs/zen-space.jpeg/_jcr_content/renditions/original.jpeg -------------------------------------------------------------------------------- /applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Products/Wayfair-Logo.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Products/Wayfair-Logo.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Products/bed-small1.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Products/bed-small1.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Products/bed-small10.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Products/bed-small10.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Products/bed-small2.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Products/bed-small2.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Products/bed-small3.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Products/bed-small3.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Products/bed-small4.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Products/bed-small4.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Products/bed-small5.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Products/bed-small5.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Products/bed-small6.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Products/bed-small6.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Products/bed-small7.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Products/bed-small7.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Products/bed-small8.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Products/bed-small8.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Products/bed-small9.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Products/bed-small9.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Products/bed1.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Products/bed1.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Products/bed2.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Products/bed2.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Products/bed3.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Products/bed3.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Products/bed4.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Products/bed4.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Products/bed5.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Products/bed5.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Products/bigBed.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Products/bigBed.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Products/chair-free.jpg/_jcr_content/renditions/original.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Products/chair-free.jpg/_jcr_content/renditions/original.jpg -------------------------------------------------------------------------------- /applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Products/chair2-free.jpg/_jcr_content/renditions/original.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Products/chair2-free.jpg/_jcr_content/renditions/original.jpg -------------------------------------------------------------------------------- /applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Products/chair3-free.jpeg/_jcr_content/renditions/original.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Products/chair3-free.jpeg/_jcr_content/renditions/original.jpeg -------------------------------------------------------------------------------- /applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Products/desk-free.jpeg/_jcr_content/renditions/original.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Products/desk-free.jpeg/_jcr_content/renditions/original.jpeg -------------------------------------------------------------------------------- /applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Products/hero3.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Products/hero3.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Products/hero4.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Products/hero4.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Products/lamp-free.jpeg/_jcr_content/renditions/original.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Products/lamp-free.jpeg/_jcr_content/renditions/original.jpeg -------------------------------------------------------------------------------- /applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Products/lamp2-free.jpeg/_jcr_content/renditions/original.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Products/lamp2-free.jpeg/_jcr_content/renditions/original.jpeg -------------------------------------------------------------------------------- /applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Products/lamp3-free.jpeg/_jcr_content/renditions/original.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Products/lamp3-free.jpeg/_jcr_content/renditions/original.jpeg -------------------------------------------------------------------------------- /applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Products/living-room-free.jpeg/_jcr_content/renditions/original.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Products/living-room-free.jpeg/_jcr_content/renditions/original.jpeg -------------------------------------------------------------------------------- /applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Products/plant-free.jpeg/_jcr_content/renditions/original.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Products/plant-free.jpeg/_jcr_content/renditions/original.jpeg -------------------------------------------------------------------------------- /applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Products/plant2-free.jpeg/_jcr_content/renditions/original.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Products/plant2-free.jpeg/_jcr_content/renditions/original.jpeg -------------------------------------------------------------------------------- /applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Products/tabl2-free.jpeg/_jcr_content/renditions/original.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Products/tabl2-free.jpeg/_jcr_content/renditions/original.jpeg -------------------------------------------------------------------------------- /applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Products/table-free.jpeg/_jcr_content/renditions/original.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Products/table-free.jpeg/_jcr_content/renditions/original.jpeg -------------------------------------------------------------------------------- /applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Products/vendors/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Products/vendors/image 8-1.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Products/vendors/image 8-1.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Products/vendors/image 8-2.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Products/vendors/image 8-2.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Products/vendors/image 8-3.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Products/vendors/image 8-3.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Products/vendors/image 8.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/Products/vendors/image 8.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/errors/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | <_x0034_04/> 5 | 6 | -------------------------------------------------------------------------------- /applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/errors/404/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/errors/404/closeup-high-loft-style-chair-evening-garden.jpg/_jcr_content/renditions/original.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/errors/404/closeup-high-loft-style-chair-evening-garden.jpg/_jcr_content/renditions/original.jpg -------------------------------------------------------------------------------- /applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/homepage/PureSight logo - logo icon no margin.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/homepage/PureSight logo - logo icon no margin.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/homepage/PureSight logo - no margin - on light.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/homepage/PureSight logo - no margin - on light.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/homepage/black-chair.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/homepage/black-chair.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/homepage/blue-chair.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/homepage/blue-chair.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/homepage/card-image.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/homepage/card-image.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/homepage/card-image19.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/homepage/card-image19.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/homepage/greenChair.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/homepage/greenChair.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/homepage/img1.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/homepage/img1.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/homepage/img2.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/homepage/img2.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/homepage/img3.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/homepage/img3.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/homepage/img4.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/homepage/img4.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/homepage/img5.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/homepage/img5.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/homepage/img6.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/homepage/img6.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/homepage/img7.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/homepage/img7.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/homepage/img8.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/homepage/img8.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/homepage/pokoj.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/homepage/pokoj.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/static/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/static/favicon.ico/_jcr_content/renditions/original.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/applications/puresight/content/src/main/content/jcr_root/content/puresight/assets/static/favicon.ico/_jcr_content/renditions/original.ico -------------------------------------------------------------------------------- /applications/puresight/content/src/main/content/jcr_root/etc/groovy-console/puresight/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | -------------------------------------------------------------------------------- /applications/puresight/frontend/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | "@babel/typescript" 4 | ], 5 | "plugins": [ 6 | "@babel/plugin-proposal-class-properties", 7 | "@babel/plugin-proposal-object-rest-spread" 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /applications/puresight/frontend/.eslintignore: -------------------------------------------------------------------------------- 1 | ./src/main/webpack/tests/ 2 | -------------------------------------------------------------------------------- /applications/puresight/frontend/.gitignore: -------------------------------------------------------------------------------- 1 | # These are some examples of commonly ignored file patterns. 2 | # You should customize this list as applicable to your project. 3 | # Learn more about .gitignore: 4 | # https://www.atlassian.com/git/tutorials/saving-changes/gitignore 5 | 6 | # Front-end files generated by ui.frontend 7 | /src/main/resources/**/webroot/* -------------------------------------------------------------------------------- /applications/puresight/frontend/README.md: -------------------------------------------------------------------------------- 1 | 2 | Module contains PureSight application Front-End. 3 | 4 | 5 | Build 6 | 7 | ``` 8 | mvn clean install 9 | ``` 10 | 11 | Local development 12 | 13 | Run `npm run sync` to watch your changes. Those will be deployed to local environment on the fly 14 | 15 | Local deployment 16 | 17 | ``` 18 | mvn clean install -P autoInstallBundle 19 | ``` -------------------------------------------------------------------------------- /applications/puresight/frontend/bnd.bnd: -------------------------------------------------------------------------------- 1 | Sling-Bundle-Resources: /apps/puresight/webroot 2 | WebSight-Apps-WebRoot: /apps/puresight/webroot 3 | -------------------------------------------------------------------------------- /applications/puresight/frontend/src/_colors.scss: -------------------------------------------------------------------------------- 1 | $blue-800: #363D55; 2 | $pampas-200: #EFEDE6; -------------------------------------------------------------------------------- /applications/puresight/frontend/src/components/BlogTemplates/BlogTemplates.scss: -------------------------------------------------------------------------------- 1 | .template-blogarticlepage { 2 | .blog-article-author-bio { 3 | .is-96x96 img { 4 | width: 96px; 5 | height: 96px; 6 | } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /applications/puresight/frontend/src/components/BlogTemplates/_index.scss: -------------------------------------------------------------------------------- 1 | @forward 'BlogTemplates'; -------------------------------------------------------------------------------- /applications/puresight/frontend/src/components/Breadcrumb/_index.scss: -------------------------------------------------------------------------------- 1 | @forward 'Breadcrumb'; -------------------------------------------------------------------------------- /applications/puresight/frontend/src/components/Button/Button.scss: -------------------------------------------------------------------------------- 1 | .button { 2 | > span:not(.icon) { 3 | vertical-align: top; 4 | } 5 | } -------------------------------------------------------------------------------- /applications/puresight/frontend/src/components/Button/_index.scss: -------------------------------------------------------------------------------- 1 | @forward 'Button'; -------------------------------------------------------------------------------- /applications/puresight/frontend/src/components/Carousel/_index.scss: -------------------------------------------------------------------------------- 1 | @forward 'Carousel'; -------------------------------------------------------------------------------- /applications/puresight/frontend/src/components/Footer/_index.scss: -------------------------------------------------------------------------------- 1 | @forward 'Footer'; -------------------------------------------------------------------------------- /applications/puresight/frontend/src/components/Hero/_index.scss: -------------------------------------------------------------------------------- 1 | @forward 'Hero'; 2 | -------------------------------------------------------------------------------- /applications/puresight/frontend/src/components/ImageCarousel/_index.scss: -------------------------------------------------------------------------------- 1 | @forward 'ImageCarousel'; -------------------------------------------------------------------------------- /applications/puresight/frontend/src/components/ImageCarousel/_splide.scss: -------------------------------------------------------------------------------- 1 | @use '../../../node_modules/@splidejs/splide/src/css/themes/default'; 2 | @use '../../../node_modules/@splidejs/splide/src/css/core'; -------------------------------------------------------------------------------- /applications/puresight/frontend/src/components/Modalcard/_index.scss: -------------------------------------------------------------------------------- 1 | @forward 'Modalcard'; -------------------------------------------------------------------------------- /applications/puresight/frontend/src/components/Navbar/Navbar.scss: -------------------------------------------------------------------------------- 1 | .navbar { 2 | .navbar-menu .navbar-end { 3 | @media (min-width: 1024px) { 4 | align-items: center; 5 | } 6 | } 7 | 8 | #autocomplete { 9 | width: 256px; 10 | } 11 | 12 | .navbar-item { 13 | margin-bottom: -3px; // compansate the margin from .navbar-item::after 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /applications/puresight/frontend/src/components/Navbar/_index.scss: -------------------------------------------------------------------------------- 1 | @forward 'Navbar'; 2 | -------------------------------------------------------------------------------- /applications/puresight/frontend/src/components/Newsletter/_index.scss: -------------------------------------------------------------------------------- 1 | @forward 'Newsletter'; -------------------------------------------------------------------------------- /applications/puresight/frontend/src/components/ProductTemplates/_index.scss: -------------------------------------------------------------------------------- 1 | @forward 'ProductTemplates'; -------------------------------------------------------------------------------- /applications/puresight/frontend/src/components/Rating/Rating.scss: -------------------------------------------------------------------------------- 1 | .rating { 2 | color: var(--kyanite-gray-15); 3 | } -------------------------------------------------------------------------------- /applications/puresight/frontend/src/components/Rating/_index.scss: -------------------------------------------------------------------------------- 1 | @forward 'Rating'; -------------------------------------------------------------------------------- /applications/puresight/frontend/src/components/Search/_index.scss: -------------------------------------------------------------------------------- 1 | @forward 'Search'; -------------------------------------------------------------------------------- /applications/puresight/frontend/src/components/Section/_index.scss: -------------------------------------------------------------------------------- 1 | @forward 'Section'; -------------------------------------------------------------------------------- /applications/puresight/frontend/src/components/Separator/_index.scss: -------------------------------------------------------------------------------- 1 | @forward 'Separator'; -------------------------------------------------------------------------------- /applications/puresight/frontend/src/components/Tile/_index.scss: -------------------------------------------------------------------------------- 1 | @forward 'Tile'; -------------------------------------------------------------------------------- /applications/puresight/frontend/src/components/index.scss: -------------------------------------------------------------------------------- 1 | @use './Footer'; 2 | @use './Breadcrumb'; 3 | @use './Rating'; 4 | @use './Separator'; 5 | @use './Hero'; 6 | @use './Navbar'; 7 | @use './Search'; 8 | @use './Tile'; 9 | @use './Carousel'; 10 | @use './ImageCarousel'; 11 | @use './Section'; 12 | @use './Newsletter'; 13 | @use './Button'; 14 | @use './Modalcard'; 15 | @use './ProductTemplates'; 16 | @use './BlogTemplates'; 17 | -------------------------------------------------------------------------------- /applications/puresight/frontend/src/components/index.ts: -------------------------------------------------------------------------------- 1 | import "@algolia/autocomplete-theme-classic"; 2 | 3 | import './Search/search'; 4 | import './ImageCarousel/imageCarousel'; 5 | -------------------------------------------------------------------------------- /applications/puresight/frontend/src/global.scss: -------------------------------------------------------------------------------- 1 | body { 2 | padding-top: var(--kyanite-navbar-height); 3 | } 4 | 5 | .navbar-brand .navbar-item img { 6 | height: 66px; 7 | aspect-ratio: 82/33; 8 | } -------------------------------------------------------------------------------- /applications/puresight/frontend/src/main.ts: -------------------------------------------------------------------------------- 1 | // Stylesheets 2 | import './main.scss'; 3 | import './components'; 4 | 5 | -------------------------------------------------------------------------------- /assets/luna-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/assets/luna-screenshot.png -------------------------------------------------------------------------------- /assets/technologies/aws-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/assets/technologies/aws-logo.png -------------------------------------------------------------------------------- /assets/technologies/bash-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/assets/technologies/bash-logo.png -------------------------------------------------------------------------------- /assets/technologies/bitbucket-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/assets/technologies/bitbucket-logo.png -------------------------------------------------------------------------------- /assets/technologies/confluence-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/assets/technologies/confluence-logo.png -------------------------------------------------------------------------------- /assets/technologies/cypress-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/assets/technologies/cypress-logo.png -------------------------------------------------------------------------------- /assets/technologies/docker-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/assets/technologies/docker-logo.png -------------------------------------------------------------------------------- /assets/technologies/figma-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/assets/technologies/figma-logo.png -------------------------------------------------------------------------------- /assets/technologies/github-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/assets/technologies/github-logo.png -------------------------------------------------------------------------------- /assets/technologies/jackrabbit-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/assets/technologies/jackrabbit-logo.png -------------------------------------------------------------------------------- /assets/technologies/java-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/assets/technologies/java-logo.png -------------------------------------------------------------------------------- /assets/technologies/jira-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/assets/technologies/jira-logo.png -------------------------------------------------------------------------------- /assets/technologies/maven-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/assets/technologies/maven-logo.png -------------------------------------------------------------------------------- /assets/technologies/miro-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/assets/technologies/miro-logo.png -------------------------------------------------------------------------------- /assets/technologies/mongodb-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/assets/technologies/mongodb-logo.png -------------------------------------------------------------------------------- /assets/technologies/nginx-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/assets/technologies/nginx-logo.png -------------------------------------------------------------------------------- /assets/technologies/osgi-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/assets/technologies/osgi-logo.png -------------------------------------------------------------------------------- /assets/technologies/percy-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/assets/technologies/percy-logo.png -------------------------------------------------------------------------------- /assets/technologies/react-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/assets/technologies/react-logo.png -------------------------------------------------------------------------------- /assets/technologies/sling-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/assets/technologies/sling-logo.png -------------------------------------------------------------------------------- /assets/technologies/typescript-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/assets/technologies/typescript-logo.png -------------------------------------------------------------------------------- /assets/technologies/yaml-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/assets/technologies/yaml-logo.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/LUNA.svg/_jcr_content/renditions/original.svg.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/aboutus/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/aboutus/AboutUs6.png/LICENSE.md: -------------------------------------------------------------------------------- 1 | License of the image is under https://unsplash.com/license -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/aboutus/AboutUs6.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/lowcodeluna/assets/images/aboutus/AboutUs6.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/aboutus/AboutUs6.png/_jcr_content/renditions/original.png.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/aboutus/AboutUs8.png/LICENSE.md: -------------------------------------------------------------------------------- 1 | License of the image is under https://unsplash.com/license -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/aboutus/AboutUs8.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/lowcodeluna/assets/images/aboutus/AboutUs8.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/aboutus/AboutUs8.png/_jcr_content/renditions/original.png.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/aboutus/Errings.png/LICENSE.md: -------------------------------------------------------------------------------- 1 | License of the image is under https://unsplash.com/license -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/aboutus/Errings.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/lowcodeluna/assets/images/aboutus/Errings.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/aboutus/Errings.png/_jcr_content/renditions/original.png.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/aboutus/Jewellery set.png/LICENSE.md: -------------------------------------------------------------------------------- 1 | License of the image is under https://www.pexels.com/license/ -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/aboutus/Jewellery set.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/lowcodeluna/assets/images/aboutus/Jewellery set.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/aboutus/Jewellery set.png/_jcr_content/renditions/original.png.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/aboutus/Ring-creation-process.png/LICENSE.md: -------------------------------------------------------------------------------- 1 | License of the image is under https://www.pexels.com/license/ -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/aboutus/Ring-creation-process.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/lowcodeluna/assets/images/aboutus/Ring-creation-process.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/aboutus/easy-returns.svg/_jcr_content/renditions/original.svg.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/aboutus/hero-image-our-story.png/LICENSE.md: -------------------------------------------------------------------------------- 1 | License of the image is under https://unsplash.com/license -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/aboutus/hero-image-our-story.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/lowcodeluna/assets/images/aboutus/hero-image-our-story.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/aboutus/pearl bracelet.png/LICENSE.md: -------------------------------------------------------------------------------- 1 | License of the image is under https://www.pexels.com/license/ -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/aboutus/pearl bracelet.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/lowcodeluna/assets/images/aboutus/pearl bracelet.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/aboutus/promo-necles-1.png/LICENSE.md: -------------------------------------------------------------------------------- 1 | License of the image is under https://www.pexels.com/license/ -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/aboutus/promo-necles-1.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/lowcodeluna/assets/images/aboutus/promo-necles-1.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/catalog/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/catalog/Ball Bypass Bracelet.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/lowcodeluna/assets/images/catalog/Ball Bypass Bracelet.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/catalog/Color By The Yard Emerald Pendant.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/lowcodeluna/assets/images/catalog/Color By The Yard Emerald Pendant.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/catalog/Diamond Hoop Single-Row Bangle.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/lowcodeluna/assets/images/catalog/Diamond Hoop Single-Row Bangle.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/catalog/Diamond Vine Ring In Platinum.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/lowcodeluna/assets/images/catalog/Diamond Vine Ring In Platinum.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/catalog/Layer Cake Necklace Set.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/lowcodeluna/assets/images/catalog/Layer Cake Necklace Set.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/catalog/Nesting Narrow Band Ring.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/lowcodeluna/assets/images/catalog/Nesting Narrow Band Ring.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/catalog/Olive Leaf Band Ring.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/lowcodeluna/assets/images/catalog/Olive Leaf Band Ring.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/catalog/Olive Leaf Earrings.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/lowcodeluna/assets/images/catalog/Olive Leaf Earrings.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/catalog/Olive Leaf Pendant.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/lowcodeluna/assets/images/catalog/Olive Leaf Pendant.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/catalog/Our Catalog.png/LICENSE.md: -------------------------------------------------------------------------------- 1 | License of the image is under https://unsplash.com/license -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/catalog/Our Catalog.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/lowcodeluna/assets/images/catalog/Our Catalog.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/catalog/Our Catalog.png/_jcr_content/renditions/original.png.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/catalog/Setting Engagement Ring in Silver.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/lowcodeluna/assets/images/catalog/Setting Engagement Ring in Silver.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/catalog/The Texture Ring Set.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/lowcodeluna/assets/images/catalog/The Texture Ring Set.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/catalog/Viviana Diamond Engagement Ring.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/lowcodeluna/assets/images/catalog/Viviana Diamond Engagement Ring.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/catalog/diamond earing.png/LICENSE.md: -------------------------------------------------------------------------------- 1 | License of the image is under https://unsplash.com/license -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/catalog/diamond earing.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/lowcodeluna/assets/images/catalog/diamond earing.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/homepage/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/homepage/Amadeus-collection.png/LICENSE.md: -------------------------------------------------------------------------------- 1 | License of the image is under https://unsplash.com/license -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/homepage/Amadeus-collection.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/lowcodeluna/assets/images/homepage/Amadeus-collection.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/homepage/Ball Hook Earrings.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/lowcodeluna/assets/images/homepage/Ball Hook Earrings.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/homepage/Bracelets.png/LICENSE.md: -------------------------------------------------------------------------------- 1 | License of the image is under https://www.pexels.com/license/ -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/homepage/Bracelets.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/lowcodeluna/assets/images/homepage/Bracelets.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/homepage/Bracelets.png/_jcr_content/renditions/original.png.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/homepage/Cushion.svg/_jcr_content/renditions/original.svg.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/homepage/Design-process.png/LICENSE.md: -------------------------------------------------------------------------------- 1 | License of the image is under https://www.pexels.com/license/ -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/homepage/Design-process.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/lowcodeluna/assets/images/homepage/Design-process.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/homepage/Diamond Vine Climber Earrings.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/lowcodeluna/assets/images/homepage/Diamond Vine Climber Earrings.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/homepage/Diamond ring.png/LICENSE.md: -------------------------------------------------------------------------------- 1 | License of the image is under https://www.pexels.com/license/ -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/homepage/Diamond ring.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/lowcodeluna/assets/images/homepage/Diamond ring.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/homepage/Diamond ring.png/_jcr_content/renditions/original.png.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/homepage/Diamonds By The Yard Bracelet.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/lowcodeluna/assets/images/homepage/Diamonds By The Yard Bracelet.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/homepage/Emerald.svg/_jcr_content/renditions/original.svg.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/homepage/Hands with jewelry.png/LICENSE.md: -------------------------------------------------------------------------------- 1 | License of the image is under https://www.pexels.com/license/ -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/homepage/Hands with jewelry.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/lowcodeluna/assets/images/homepage/Hands with jewelry.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/homepage/Janet.png/LICENSE.md: -------------------------------------------------------------------------------- 1 | License of the image is under https://unsplash.com/license -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/homepage/Janet.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/lowcodeluna/assets/images/homepage/Janet.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/homepage/Janet.png/_jcr_content/renditions/original.png.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/homepage/Layer Cake Necklace Set.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/lowcodeluna/assets/images/homepage/Layer Cake Necklace Set.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/homepage/Logo 1.svg/_jcr_content/renditions/original.svg.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/homepage/Logo 2.svg/_jcr_content/renditions/original.svg.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/homepage/Logo 3.svg/_jcr_content/renditions/original.svg.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/homepage/Logo 4.svg/_jcr_content/renditions/original.svg.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/homepage/Logo 5.svg/_jcr_content/renditions/original.svg.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/homepage/Margot-collection.png/LICENSE.md: -------------------------------------------------------------------------------- 1 | License of the image is under https://www.pexels.com/license/ -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/homepage/Margot-collection.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/lowcodeluna/assets/images/homepage/Margot-collection.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/homepage/Marquise.svg/_jcr_content/renditions/original.svg.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/homepage/Necles-hero-image.png/LICENSE.md: -------------------------------------------------------------------------------- 1 | License of the image is under https://www.pexels.com/license/ -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/homepage/Necles-hero-image.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/lowcodeluna/assets/images/homepage/Necles-hero-image.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/homepage/Nesting Narrow Band Ring.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/lowcodeluna/assets/images/homepage/Nesting Narrow Band Ring.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/homepage/Oval.svg/_jcr_content/renditions/original.svg.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/homepage/Pear.svg/_jcr_content/renditions/original.svg.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/homepage/Round.svg/_jcr_content/renditions/original.svg.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/product/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/product/Diamond Cut Ankle.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/lowcodeluna/assets/images/product/Diamond Cut Ankle.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/product/Diamond Vine Ring In Platinum.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/lowcodeluna/assets/images/product/Diamond Vine Ring In Platinum.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/product/Ring in a hand.png/LICENSE.md: -------------------------------------------------------------------------------- 1 | License of the image is under https://www.pexels.com/license/ -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/product/Ring in a hand.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/lowcodeluna/assets/images/product/Ring in a hand.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/product/Silver Ring.png/LICENSE.md: -------------------------------------------------------------------------------- 1 | License of the image is under https://www.pexels.com/license/ -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/product/Silver Ring.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/lowcodeluna/assets/images/product/Silver Ring.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/product/Silver Ring.png/_jcr_content/renditions/original.png.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/product/The Texture Ring Set.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/lowcodeluna/assets/images/product/The Texture Ring Set.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/product/Viviana Diamond Engagement Ring.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/lowcodeluna/assets/images/product/Viviana Diamond Engagement Ring.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/product/drop-a-hint.svg/_jcr_content/renditions/original.svg.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/product/payment-plans.svg/_jcr_content/renditions/original.svg.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/assets/images/product/ring-resizing.svg/_jcr_content/renditions/original.svg.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/lowcodeluna/pages/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/LUNA.svg/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/LUNA.svg/_jcr_content/renditions/original.svg.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/aboutus/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/aboutus/AboutUs6.png/LICENSE.md: -------------------------------------------------------------------------------- 1 | License of the image is under https://unsplash.com/license -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/aboutus/AboutUs6.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/luna/assets/images/aboutus/AboutUs6.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/aboutus/AboutUs6.png/_jcr_content/renditions/original.png.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/aboutus/AboutUs8.png/LICENSE.md: -------------------------------------------------------------------------------- 1 | License of the image is under https://unsplash.com/license -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/aboutus/AboutUs8.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/luna/assets/images/aboutus/AboutUs8.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/aboutus/AboutUs8.png/_jcr_content/renditions/original.png.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/aboutus/Errings.png/LICENSE.md: -------------------------------------------------------------------------------- 1 | License of the image is under https://unsplash.com/license -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/aboutus/Errings.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/luna/assets/images/aboutus/Errings.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/aboutus/Errings.png/_jcr_content/renditions/original.png.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/aboutus/Jewellery set.png/LICENSE.md: -------------------------------------------------------------------------------- 1 | License of the image is under https://www.pexels.com/license/ -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/aboutus/Jewellery set.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/luna/assets/images/aboutus/Jewellery set.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/aboutus/Jewellery set.png/_jcr_content/renditions/original.png.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/aboutus/Ring-creation-process.png/LICENSE.md: -------------------------------------------------------------------------------- 1 | License of the image is under https://www.pexels.com/license/ -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/aboutus/Ring-creation-process.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/luna/assets/images/aboutus/Ring-creation-process.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/aboutus/easy-returns.svg/_jcr_content/renditions/original.svg.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/aboutus/hero-image-our-story.png/LICENSE.md: -------------------------------------------------------------------------------- 1 | License of the image is under https://unsplash.com/license -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/aboutus/hero-image-our-story.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/luna/assets/images/aboutus/hero-image-our-story.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/aboutus/pearl bracelet.png/LICENSE.md: -------------------------------------------------------------------------------- 1 | License of the image is under https://www.pexels.com/license/ -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/aboutus/pearl bracelet.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/luna/assets/images/aboutus/pearl bracelet.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/aboutus/pearl bracelet.png/_jcr_content/renditions/original.png.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/aboutus/promo-necles-1.png/LICENSE.md: -------------------------------------------------------------------------------- 1 | License of the image is under https://www.pexels.com/license/ -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/aboutus/promo-necles-1.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/luna/assets/images/aboutus/promo-necles-1.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/aboutus/promo-necles-1.png/_jcr_content/renditions/original.png.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/catalog/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/catalog/Ball Bypass Bracelet.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/luna/assets/images/catalog/Ball Bypass Bracelet.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/catalog/Color By The Yard Emerald Pendant.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/luna/assets/images/catalog/Color By The Yard Emerald Pendant.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/catalog/Diamond Hoop Single-Row Bangle.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/luna/assets/images/catalog/Diamond Hoop Single-Row Bangle.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/catalog/Diamond Vine Ring In Platinum.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/luna/assets/images/catalog/Diamond Vine Ring In Platinum.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/catalog/Layer Cake Necklace Set.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/luna/assets/images/catalog/Layer Cake Necklace Set.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/catalog/Nesting Narrow Band Ring.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/luna/assets/images/catalog/Nesting Narrow Band Ring.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/catalog/Olive Leaf Band Ring.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/luna/assets/images/catalog/Olive Leaf Band Ring.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/catalog/Olive Leaf Earrings.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/luna/assets/images/catalog/Olive Leaf Earrings.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/catalog/Olive Leaf Pendant.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/luna/assets/images/catalog/Olive Leaf Pendant.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/catalog/Our Catalog.png/LICENSE.md: -------------------------------------------------------------------------------- 1 | License of the image is under https://unsplash.com/license -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/catalog/Our Catalog.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/luna/assets/images/catalog/Our Catalog.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/catalog/Our Catalog.png/_jcr_content/renditions/original.png.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/catalog/Setting Engagement Ring in Silver.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/luna/assets/images/catalog/Setting Engagement Ring in Silver.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/catalog/The Texture Ring Set.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/luna/assets/images/catalog/The Texture Ring Set.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/catalog/Viviana Diamond Engagement Ring.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/luna/assets/images/catalog/Viviana Diamond Engagement Ring.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/catalog/diamond earing.png/LICENSE.md: -------------------------------------------------------------------------------- 1 | License of the image is under https://unsplash.com/license -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/catalog/diamond earing.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/luna/assets/images/catalog/diamond earing.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/catalog/diamond earing.png/_jcr_content/renditions/original.png.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/homepage/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/homepage/Amadeus-collection.png/LICENSE.md: -------------------------------------------------------------------------------- 1 | License of the image is under https://unsplash.com/license -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/homepage/Amadeus-collection.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/luna/assets/images/homepage/Amadeus-collection.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/homepage/Ball Hook Earrings.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/luna/assets/images/homepage/Ball Hook Earrings.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/homepage/Bracelets.png/LICENSE.md: -------------------------------------------------------------------------------- 1 | License of the image is under https://www.pexels.com/license/ -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/homepage/Bracelets.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/luna/assets/images/homepage/Bracelets.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/homepage/Bracelets.png/_jcr_content/renditions/original.png.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/homepage/Cushion.svg/_jcr_content/renditions/original.svg.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/homepage/Design-process.png/LICENSE.md: -------------------------------------------------------------------------------- 1 | License of the image is under https://www.pexels.com/license/ -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/homepage/Design-process.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/luna/assets/images/homepage/Design-process.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/homepage/Design-process.png/_jcr_content/renditions/original.png.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/homepage/Diamond Vine Climber Earrings.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/luna/assets/images/homepage/Diamond Vine Climber Earrings.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/homepage/Diamond ring.png/LICENSE.md: -------------------------------------------------------------------------------- 1 | License of the image is under https://www.pexels.com/license/ -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/homepage/Diamond ring.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/luna/assets/images/homepage/Diamond ring.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/homepage/Diamond ring.png/_jcr_content/renditions/original.png.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/homepage/Diamonds By The Yard Bracelet.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/luna/assets/images/homepage/Diamonds By The Yard Bracelet.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/homepage/Emerald.svg/_jcr_content/renditions/original.svg.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/homepage/Hands with jewelry.png/LICENSE.md: -------------------------------------------------------------------------------- 1 | License of the image is under https://www.pexels.com/license/ -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/homepage/Hands with jewelry.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/luna/assets/images/homepage/Hands with jewelry.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/homepage/Janet.png/LICENSE.md: -------------------------------------------------------------------------------- 1 | License of the image is under https://unsplash.com/license -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/homepage/Janet.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/luna/assets/images/homepage/Janet.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/homepage/Janet.png/_jcr_content/renditions/original.png.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/homepage/Layer Cake Necklace Set.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/luna/assets/images/homepage/Layer Cake Necklace Set.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/homepage/Logo 1.svg/_jcr_content/renditions/original.svg.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/homepage/Logo 2.svg/_jcr_content/renditions/original.svg.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/homepage/Logo 3.svg/_jcr_content/renditions/original.svg.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/homepage/Logo 4.svg/_jcr_content/renditions/original.svg.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/homepage/Logo 5.svg/_jcr_content/renditions/original.svg.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/homepage/Margot-collection.png/LICENSE.md: -------------------------------------------------------------------------------- 1 | License of the image is under https://www.pexels.com/license/ -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/homepage/Margot-collection.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/luna/assets/images/homepage/Margot-collection.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/homepage/Marquise.svg/_jcr_content/renditions/original.svg.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/homepage/Necles-hero-image.png/LICENSE.md: -------------------------------------------------------------------------------- 1 | License of the image is under https://www.pexels.com/license/ -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/homepage/Necles-hero-image.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/luna/assets/images/homepage/Necles-hero-image.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/homepage/Nesting Narrow Band Ring.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/luna/assets/images/homepage/Nesting Narrow Band Ring.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/homepage/Oval.svg/_jcr_content/renditions/original.svg.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/homepage/Pear.svg/_jcr_content/renditions/original.svg.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/homepage/Round.svg/_jcr_content/renditions/original.svg.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/product/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/product/Diamond Cut Ankle.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/luna/assets/images/product/Diamond Cut Ankle.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/product/Diamond Vine Ring In Platinum.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/luna/assets/images/product/Diamond Vine Ring In Platinum.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/product/Ring in a hand.png/LICENSE.md: -------------------------------------------------------------------------------- 1 | License of the image is under https://www.pexels.com/license/ -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/product/Ring in a hand.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/luna/assets/images/product/Ring in a hand.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/product/Ring in a hand.png/_jcr_content/renditions/original.png.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/product/Silver Ring.png/LICENSE.md: -------------------------------------------------------------------------------- 1 | License of the image is under https://www.pexels.com/license/ -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/product/Silver Ring.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/luna/assets/images/product/Silver Ring.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/product/Silver Ring.png/_jcr_content/renditions/original.png.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/product/The Texture Ring Set.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/luna/assets/images/product/The Texture Ring Set.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/product/Viviana Diamond Engagement Ring.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/luna/assets/images/product/Viviana Diamond Engagement Ring.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/product/drop-a-hint.svg/_jcr_content/renditions/original.svg.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/product/payment-plans.svg/_jcr_content/renditions/original.svg.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/assets/images/product/ring-resizing.svg/_jcr_content/renditions/original.svg.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/luna/pages/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/LUNA.svg/_jcr_content/renditions/original.svg.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/aboutus/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/aboutus/AboutUs6.png/LICENSE.md: -------------------------------------------------------------------------------- 1 | License of the image is under https://unsplash.com/license -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/aboutus/AboutUs6.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/nocodeluna/assets/images/aboutus/AboutUs6.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/aboutus/AboutUs6.png/_jcr_content/renditions/original.png.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/aboutus/AboutUs8.png/LICENSE.md: -------------------------------------------------------------------------------- 1 | License of the image is under https://unsplash.com/license -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/aboutus/AboutUs8.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/nocodeluna/assets/images/aboutus/AboutUs8.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/aboutus/AboutUs8.png/_jcr_content/renditions/original.png.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/aboutus/Errings.png/LICENSE.md: -------------------------------------------------------------------------------- 1 | License of the image is under https://unsplash.com/license -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/aboutus/Errings.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/nocodeluna/assets/images/aboutus/Errings.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/aboutus/Errings.png/_jcr_content/renditions/original.png.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/aboutus/Jewellery set.png/LICENSE.md: -------------------------------------------------------------------------------- 1 | License of the image is under https://www.pexels.com/license/ -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/aboutus/Jewellery set.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/nocodeluna/assets/images/aboutus/Jewellery set.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/aboutus/Ring-creation-process.png/LICENSE.md: -------------------------------------------------------------------------------- 1 | License of the image is under https://www.pexels.com/license/ -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/aboutus/Ring-creation-process.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/nocodeluna/assets/images/aboutus/Ring-creation-process.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/aboutus/hero-image-our-story.png/LICENSE.md: -------------------------------------------------------------------------------- 1 | License of the image is under https://unsplash.com/license -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/aboutus/hero-image-our-story.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/nocodeluna/assets/images/aboutus/hero-image-our-story.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/aboutus/pearl bracelet.png/LICENSE.md: -------------------------------------------------------------------------------- 1 | License of the image is under https://www.pexels.com/license/ -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/aboutus/pearl bracelet.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/nocodeluna/assets/images/aboutus/pearl bracelet.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/aboutus/promo-necles-1.png/LICENSE.md: -------------------------------------------------------------------------------- 1 | License of the image is under https://www.pexels.com/license/ -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/aboutus/promo-necles-1.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/nocodeluna/assets/images/aboutus/promo-necles-1.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/catalog/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/catalog/Ball Bypass Bracelet.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/nocodeluna/assets/images/catalog/Ball Bypass Bracelet.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/catalog/Color By The Yard Emerald Pendant.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/nocodeluna/assets/images/catalog/Color By The Yard Emerald Pendant.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/catalog/Diamond Hoop Single-Row Bangle.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/nocodeluna/assets/images/catalog/Diamond Hoop Single-Row Bangle.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/catalog/Diamond Vine Ring In Platinum.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/nocodeluna/assets/images/catalog/Diamond Vine Ring In Platinum.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/catalog/Layer Cake Necklace Set.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/nocodeluna/assets/images/catalog/Layer Cake Necklace Set.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/catalog/Nesting Narrow Band Ring.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/nocodeluna/assets/images/catalog/Nesting Narrow Band Ring.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/catalog/Olive Leaf Band Ring.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/nocodeluna/assets/images/catalog/Olive Leaf Band Ring.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/catalog/Olive Leaf Earrings.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/nocodeluna/assets/images/catalog/Olive Leaf Earrings.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/catalog/Olive Leaf Pendant.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/nocodeluna/assets/images/catalog/Olive Leaf Pendant.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/catalog/Our Catalog.png/LICENSE.md: -------------------------------------------------------------------------------- 1 | License of the image is under https://unsplash.com/license -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/catalog/Our Catalog.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/nocodeluna/assets/images/catalog/Our Catalog.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/catalog/Setting Engagement Ring in Silver.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/nocodeluna/assets/images/catalog/Setting Engagement Ring in Silver.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/catalog/The Texture Ring Set.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/nocodeluna/assets/images/catalog/The Texture Ring Set.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/catalog/Viviana Diamond Engagement Ring.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/nocodeluna/assets/images/catalog/Viviana Diamond Engagement Ring.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/catalog/diamond earing.png/LICENSE.md: -------------------------------------------------------------------------------- 1 | License of the image is under https://unsplash.com/license -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/catalog/diamond earing.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/nocodeluna/assets/images/catalog/diamond earing.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/homepage/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/homepage/Amadeus-collection.png/LICENSE.md: -------------------------------------------------------------------------------- 1 | License of the image is under https://unsplash.com/license -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/homepage/Amadeus-collection.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/nocodeluna/assets/images/homepage/Amadeus-collection.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/homepage/Ball Hook Earrings.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/nocodeluna/assets/images/homepage/Ball Hook Earrings.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/homepage/Bracelets.png/LICENSE.md: -------------------------------------------------------------------------------- 1 | License of the image is under https://www.pexels.com/license/ -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/homepage/Bracelets.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/nocodeluna/assets/images/homepage/Bracelets.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/homepage/Cushion.svg/_jcr_content/renditions/original.svg.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/homepage/Design-process.png/LICENSE.md: -------------------------------------------------------------------------------- 1 | License of the image is under https://www.pexels.com/license/ -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/homepage/Design-process.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/nocodeluna/assets/images/homepage/Design-process.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/homepage/Diamond Vine Climber Earrings.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/nocodeluna/assets/images/homepage/Diamond Vine Climber Earrings.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/homepage/Diamond ring.png/LICENSE.md: -------------------------------------------------------------------------------- 1 | License of the image is under https://www.pexels.com/license/ -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/homepage/Diamond ring.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/nocodeluna/assets/images/homepage/Diamond ring.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/homepage/Diamonds By The Yard Bracelet.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/nocodeluna/assets/images/homepage/Diamonds By The Yard Bracelet.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/homepage/Emerald.svg/_jcr_content/renditions/original.svg.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/homepage/Hands with jewelry.png/LICENSE.md: -------------------------------------------------------------------------------- 1 | License of the image is under https://www.pexels.com/license/ -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/homepage/Hands with jewelry.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/nocodeluna/assets/images/homepage/Hands with jewelry.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/homepage/Janet.png/LICENSE.md: -------------------------------------------------------------------------------- 1 | License of the image is under https://unsplash.com/license -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/homepage/Janet.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/nocodeluna/assets/images/homepage/Janet.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/homepage/Janet.png/_jcr_content/renditions/original.png.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/homepage/Layer Cake Necklace Set.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/nocodeluna/assets/images/homepage/Layer Cake Necklace Set.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/homepage/Logo 1.svg/_jcr_content/renditions/original.svg.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/homepage/Logo 2.svg/_jcr_content/renditions/original.svg.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/homepage/Logo 3.svg/_jcr_content/renditions/original.svg.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/homepage/Logo 4.svg/_jcr_content/renditions/original.svg.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/homepage/Logo 5.svg/_jcr_content/renditions/original.svg.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/homepage/Margot-collection.png/LICENSE.md: -------------------------------------------------------------------------------- 1 | License of the image is under https://www.pexels.com/license/ -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/homepage/Margot-collection.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/nocodeluna/assets/images/homepage/Margot-collection.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/homepage/Marquise.svg/_jcr_content/renditions/original.svg.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/homepage/Necles-hero-image.png/LICENSE.md: -------------------------------------------------------------------------------- 1 | License of the image is under https://www.pexels.com/license/ -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/homepage/Necles-hero-image.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/nocodeluna/assets/images/homepage/Necles-hero-image.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/homepage/Nesting Narrow Band Ring.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/nocodeluna/assets/images/homepage/Nesting Narrow Band Ring.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/homepage/Oval.svg/_jcr_content/renditions/original.svg.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/homepage/Pear.svg/_jcr_content/renditions/original.svg.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/homepage/Round.svg/_jcr_content/renditions/original.svg.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/product/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/product/Diamond Cut Ankle.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/nocodeluna/assets/images/product/Diamond Cut Ankle.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/product/Diamond Vine Ring In Platinum.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/nocodeluna/assets/images/product/Diamond Vine Ring In Platinum.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/product/Ring in a hand.png/LICENSE.md: -------------------------------------------------------------------------------- 1 | License of the image is under https://www.pexels.com/license/ -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/product/Ring in a hand.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/nocodeluna/assets/images/product/Ring in a hand.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/product/Silver Ring.png/LICENSE.md: -------------------------------------------------------------------------------- 1 | License of the image is under https://www.pexels.com/license/ -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/product/Silver Ring.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/nocodeluna/assets/images/product/Silver Ring.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/product/The Texture Ring Set.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/nocodeluna/assets/images/product/The Texture Ring Set.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/assets/images/product/Viviana Diamond Engagement Ring.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/content/src/main/content/jcr_root/content/nocodeluna/assets/images/product/Viviana Diamond Engagement Ring.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /content/src/main/content/jcr_root/content/nocodeluna/pages/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /distribution/src/main/features/docker/docker.json: -------------------------------------------------------------------------------- 1 | { 2 | "configurations":{ 3 | "org.apache.sling.commons.log.LogManager":{ 4 | "org.apache.sling.commons.log.file":"" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /distribution/src/main/features/howlite.json: -------------------------------------------------------------------------------- 1 | { 2 | "bundles": [ 3 | { 4 | "id": "pl.ds.howlite:howlite-core:${howlite.version}", 5 | "start-order": "25" 6 | } 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /distribution/src/main/features/luna-custom-code.json: -------------------------------------------------------------------------------- 1 | { 2 | "bundles": [ 3 | { 4 | "id": "pl.ds.starter:luna-custom-code-backend:${starter-parent.version}", 5 | "start-order": "25" 6 | }, 7 | { 8 | "id": "pl.ds.starter:luna-custom-code-frontend:${starter-parent.version}", 9 | "start-order": "25" 10 | } 11 | ] 12 | } -------------------------------------------------------------------------------- /distribution/src/main/features/luna-low-code.json: -------------------------------------------------------------------------------- 1 | { 2 | "bundles": [ 3 | { 4 | "id": "pl.ds.starter:luna-low-code-backend:${starter-parent.version}", 5 | "start-order": "25" 6 | }, 7 | { 8 | "id": "pl.ds.starter:luna-low-code-frontend:${starter-parent.version}", 9 | "start-order": "25" 10 | } 11 | ] 12 | } -------------------------------------------------------------------------------- /distribution/src/main/features/streamx-repoinit.txt: -------------------------------------------------------------------------------- 1 | create service user streamx-connector-websight-blueprints with path system/websight 2 | 3 | set ACL for streamx-connector-websight-blueprints 4 | allow jcr:read on /content,/published 5 | end -------------------------------------------------------------------------------- /tests/content/src/main/content/jcr_root/content/low-code-luna-test/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /tests/content/src/main/content/jcr_root/content/low-code-luna-test/assets/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/content/src/main/content/jcr_root/content/low-code-luna-test/assets/images/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | -------------------------------------------------------------------------------- /tests/content/src/main/content/jcr_root/content/low-code-luna-test/assets/images/quote/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /tests/content/src/main/content/jcr_root/content/low-code-luna-test/assets/images/quote/Janet.png/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /tests/content/src/main/content/jcr_root/content/low-code-luna-test/assets/images/quote/Janet.png/LICENSE.md: -------------------------------------------------------------------------------- 1 | License of the image is under https://unsplash.com/license -------------------------------------------------------------------------------- /tests/content/src/main/content/jcr_root/content/low-code-luna-test/assets/images/quote/Janet.png/_jcr_content/renditions/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/tests/content/src/main/content/jcr_root/content/low-code-luna-test/assets/images/quote/Janet.png/_jcr_content/renditions/original.png -------------------------------------------------------------------------------- /tests/content/src/main/content/jcr_root/content/low-code-luna-test/pages/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /tests/content/src/main/content/jcr_root/content/starter-test/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /tests/content/src/main/content/jcr_root/content/starter-test/assets/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | -------------------------------------------------------------------------------- /tests/content/src/main/content/jcr_root/content/starter-test/pages/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /tests/end-to-end/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build 3 | cypress 4 | node 5 | target 6 | 7 | launcher 8 | 9 | backstop_data/bitmaps_test 10 | backstop_data/bitmaps_reference 11 | backstop_data/ci_report 12 | backstop_data/html_report -------------------------------------------------------------------------------- /tests/end-to-end/.node_version: -------------------------------------------------------------------------------- 1 | 14.18.2 -------------------------------------------------------------------------------- /tests/end-to-end/.prettierrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "semi": true, 3 | "singleQuote": true, 4 | "trailingComma": "none" 5 | } 6 | -------------------------------------------------------------------------------- /tests/end-to-end/backstop_data/engine_scripts/cookies.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "domain": "localhost", 4 | "path": "/", 5 | "name": "websight.auth", 6 | "value": "yourCookieValue", 7 | "expirationDate": 1798790400, 8 | "hostOnly": false, 9 | "httpOnly": false, 10 | "secure": false, 11 | "session": false, 12 | "sameSite": "Lax" 13 | } 14 | ] -------------------------------------------------------------------------------- /tests/end-to-end/backstop_data/engine_scripts/imageStub.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websight-io/starter/fee66ffb815f6f81cb5077beea5ac9c7a35e1b5a/tests/end-to-end/backstop_data/engine_scripts/imageStub.jpg -------------------------------------------------------------------------------- /tests/end-to-end/backstop_data/engine_scripts/playwright/onBefore.js: -------------------------------------------------------------------------------- 1 | module.exports = async (page, scenario, viewport, isReference, browserContext) => { 2 | await require('./loadCookies')(browserContext, scenario); 3 | }; 4 | -------------------------------------------------------------------------------- /tests/end-to-end/backstop_data/engine_scripts/playwright/onReady.js: -------------------------------------------------------------------------------- 1 | module.exports = async (page, scenario, viewport, isReference, browserContext) => { 2 | console.log('SCENARIO > ' + scenario.label); 3 | await require('./preventLazyLoading')(page, scenario); 4 | await require('./clickAndHoverHelper')(page, scenario); 5 | 6 | // add more ready handlers here... 7 | }; 8 | -------------------------------------------------------------------------------- /tests/end-to-end/backstop_data/engine_scripts/puppet/onBefore.js: -------------------------------------------------------------------------------- 1 | module.exports = async (page, scenario, vp) => { 2 | await require('./loadCookies')(page, scenario); 3 | }; 4 | -------------------------------------------------------------------------------- /tests/end-to-end/backstop_data/engine_scripts/puppet/onReady.js: -------------------------------------------------------------------------------- 1 | module.exports = async (page, scenario, vp) => { 2 | console.log('SCENARIO > ' + scenario.label); 3 | await require('./preventLazyLoading')(page, scenario); 4 | await require('./clickAndHoverHelper')(page, scenario); 5 | 6 | // add more ready handlers here... 7 | }; 8 | -------------------------------------------------------------------------------- /tests/end-to-end/cypress.env.json: -------------------------------------------------------------------------------- 1 | { 2 | "loginUsername": "wsadmin", 3 | "loginPassword": "wsadmin" 4 | } 5 | -------------------------------------------------------------------------------- /tests/end-to-end/src/main/features/starter_tests_content.json: -------------------------------------------------------------------------------- 1 | { 2 | "content-packages:ARTIFACTS|true": [ 3 | "pl.ds.starter:starter-tests-content:zip:${project.version}" 4 | ] 5 | } 6 | -------------------------------------------------------------------------------- /tests/end-to-end/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "es5", 4 | "lib": ["es5", "dom", "ES2021.String"], 5 | "types": ["cypress", "node", "@4tw/cypress-drag-drop"], 6 | "esModuleInterop": true 7 | }, 8 | "include": ["**/*.ts"] 9 | } 10 | --------------------------------------------------------------------------------