├── .changeset ├── README.md └── config.json ├── .editorconfig ├── .gitignore ├── .prettierrc ├── README.md ├── apps ├── backend │ ├── .eslintrc.js │ ├── .gitignore │ ├── .prettierrc │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── sanity.cli.ts │ ├── sanity.config.ts │ ├── schemaTypes │ │ ├── general │ │ │ ├── category.ts │ │ │ ├── page.ts │ │ │ └── product.ts │ │ ├── global │ │ │ └── settings.ts │ │ ├── index.ts │ │ ├── layout │ │ │ ├── footer.ts │ │ │ └── menu.ts │ │ ├── modules │ │ │ ├── categories.ts │ │ │ ├── columns.ts │ │ │ ├── contact.ts │ │ │ ├── details.ts │ │ │ ├── disclaimer.ts │ │ │ ├── error.ts │ │ │ ├── gallery.ts │ │ │ ├── header.ts │ │ │ ├── hero.ts │ │ │ ├── highlight.ts │ │ │ ├── information.ts │ │ │ ├── ingredients.ts │ │ │ ├── intro.ts │ │ │ ├── list.ts │ │ │ ├── lookbook.ts │ │ │ ├── marquee.ts │ │ │ ├── media.ts │ │ │ ├── quote.ts │ │ │ ├── seasons.ts │ │ │ └── shop.ts │ │ └── shared │ │ │ ├── content.ts │ │ │ ├── link.ts │ │ │ └── social.ts │ ├── structure │ │ └── index.ts │ └── tsconfig.json └── frontend │ ├── .eslintrc.js │ ├── .gitignore │ ├── .prettierrc │ ├── CHANGELOG.md │ ├── README.md │ ├── client.ts │ ├── controllers │ ├── newsletter.ts │ └── page.ts │ ├── download.ts │ ├── index.js │ ├── index.js.map │ ├── index.ts │ ├── nodemon.json │ ├── package.json │ ├── router │ └── index.ts │ ├── src │ ├── app │ │ ├── classes │ │ │ └── Animation.ts │ │ ├── components │ │ │ ├── Menu.ts │ │ │ ├── Navigation.ts │ │ │ └── Transition.ts │ │ ├── datasets │ │ │ ├── Newsletter.ts │ │ │ ├── Paragraph.ts │ │ │ ├── Parallax.ts │ │ │ ├── Reveal.ts │ │ │ ├── Source.ts │ │ │ ├── Title.ts │ │ │ ├── Translate.ts │ │ │ └── sections │ │ │ │ ├── Categories.ts │ │ │ │ ├── Details.ts │ │ │ │ ├── Footer.ts │ │ │ │ ├── Hero.ts │ │ │ │ ├── List.ts │ │ │ │ ├── Marquee.ts │ │ │ │ ├── Media.ts │ │ │ │ ├── Seasons.ts │ │ │ │ └── Shop.ts │ │ ├── index.ts │ │ └── templates │ │ │ └── Standard.ts │ ├── shared │ │ ├── favicon │ │ │ ├── apple-touch-icon.png │ │ │ ├── favicon-96x96.png │ │ │ ├── favicon.ico │ │ │ ├── favicon.svg │ │ │ ├── site.webmanifest │ │ │ ├── web-app-manifest-192x192.png │ │ │ └── web-app-manifest-512x512.png │ │ ├── fonts │ │ │ ├── editorial-new.woff │ │ │ ├── editorial-new.woff2 │ │ │ ├── neue-montreal.woff │ │ │ └── neue-montreal.woff2 │ │ ├── open-graph.png │ │ └── robots.txt │ ├── sprites │ │ ├── instagram.svg │ │ └── twitter.svg │ └── styles │ │ ├── base │ │ ├── fonts.scss │ │ └── reset.scss │ │ ├── components │ │ ├── bag.scss │ │ ├── footer.scss │ │ ├── menu.scss │ │ └── navigation.scss │ │ ├── index.scss │ │ ├── pages │ │ └── page.scss │ │ ├── sections │ │ ├── categories.scss │ │ ├── columns.scss │ │ ├── contact.scss │ │ ├── details.scss │ │ ├── disclaimer.scss │ │ ├── error.scss │ │ ├── gallery.scss │ │ ├── header.scss │ │ ├── hero.scss │ │ ├── highlight.scss │ │ ├── information.scss │ │ ├── ingredients.scss │ │ ├── intro.scss │ │ ├── list.scss │ │ ├── lookbook.scss │ │ ├── marquee.scss │ │ ├── media.scss │ │ ├── quote.scss │ │ ├── seasons.scss │ │ └── shop.scss │ │ ├── shared │ │ ├── animations.scss │ │ ├── button.scss │ │ ├── links.scss │ │ └── sections.scss │ │ └── utils │ │ └── variables.scss │ ├── stylelint.config.js │ ├── tsconfig.json │ ├── tsup.config.ts │ ├── utilities │ └── data.ts │ ├── vercel.json │ └── views │ ├── base.twig │ ├── components │ └── button.twig │ ├── layout │ ├── footer.twig │ ├── menu.twig │ └── navigation.twig │ ├── pages │ └── page.twig │ ├── sections │ ├── _categories.twig │ ├── _columns.twig │ ├── _contact.twig │ ├── _details.twig │ ├── _disclaimer.twig │ ├── _error.twig │ ├── _gallery.twig │ ├── _header.twig │ ├── _hero.twig │ ├── _highlight.twig │ ├── _information.twig │ ├── _ingredients.twig │ ├── _intro.twig │ ├── _list.twig │ ├── _lookbook.twig │ ├── _marquee.twig │ ├── _media.twig │ ├── _quote.twig │ ├── _seasons.twig │ ├── _shop.twig │ └── index.twig │ └── shared │ ├── header.twig │ └── scripts.twig ├── package.json ├── packages ├── cli │ ├── .eslintrc.js │ ├── CHANGELOG.md │ ├── index.js │ └── package.json ├── config-eslint │ ├── .eslintrc.js │ ├── CHANGELOG.md │ ├── index.js │ └── package.json ├── config-prettier │ ├── CHANGELOG.md │ ├── index.js │ └── package.json ├── config-stylelint │ ├── CHANGELOG.md │ ├── index.js │ └── package.json ├── config-tsconfig │ ├── CHANGELOG.md │ ├── base.json │ └── package.json ├── core │ ├── CHANGELOG.md │ ├── package.json │ ├── src │ │ ├── App.ts │ │ ├── Component.ts │ │ ├── EventEmitter.ts │ │ ├── Link.ts │ │ ├── Links.ts │ │ ├── Page.ts │ │ └── index.ts │ └── tsconfig.json ├── managers │ ├── CHANGELOG.md │ ├── package.json │ ├── src │ │ ├── Pointer.ts │ │ ├── Viewport.ts │ │ └── index.ts │ └── tsconfig.json ├── styles │ ├── CHANGELOG.md │ ├── package.json │ ├── scss │ │ ├── base │ │ │ ├── app.scss │ │ │ ├── lenis.scss │ │ │ └── reset.scss │ │ ├── index.scss │ │ ├── plugins │ │ │ ├── include-media-library.scss │ │ │ └── include-media.scss │ │ ├── utils │ │ │ ├── functions.scss │ │ │ └── mixins.scss │ │ └── variables │ │ │ └── easings.scss │ └── stylelint.config.js └── utilities │ ├── CHANGELOG.md │ ├── package.json │ ├── src │ ├── Canvas.ts │ ├── DOM.ts │ ├── Detection.ts │ ├── Math.ts │ ├── Polyfill.ts │ ├── Promises.ts │ ├── Tempus.ts │ └── index.ts │ └── tsconfig.json └── turbo.json /.changeset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/.changeset/README.md -------------------------------------------------------------------------------- /.changeset/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/.changeset/config.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | "@lisergia/config-prettier" 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/README.md -------------------------------------------------------------------------------- /apps/backend/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/backend/.eslintrc.js -------------------------------------------------------------------------------- /apps/backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/backend/.gitignore -------------------------------------------------------------------------------- /apps/backend/.prettierrc: -------------------------------------------------------------------------------- 1 | "@lisergia/config-prettier" 2 | -------------------------------------------------------------------------------- /apps/backend/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/backend/CHANGELOG.md -------------------------------------------------------------------------------- /apps/backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/backend/README.md -------------------------------------------------------------------------------- /apps/backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/backend/package.json -------------------------------------------------------------------------------- /apps/backend/sanity.cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/backend/sanity.cli.ts -------------------------------------------------------------------------------- /apps/backend/sanity.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/backend/sanity.config.ts -------------------------------------------------------------------------------- /apps/backend/schemaTypes/general/category.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/backend/schemaTypes/general/category.ts -------------------------------------------------------------------------------- /apps/backend/schemaTypes/general/page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/backend/schemaTypes/general/page.ts -------------------------------------------------------------------------------- /apps/backend/schemaTypes/general/product.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/backend/schemaTypes/general/product.ts -------------------------------------------------------------------------------- /apps/backend/schemaTypes/global/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/backend/schemaTypes/global/settings.ts -------------------------------------------------------------------------------- /apps/backend/schemaTypes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/backend/schemaTypes/index.ts -------------------------------------------------------------------------------- /apps/backend/schemaTypes/layout/footer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/backend/schemaTypes/layout/footer.ts -------------------------------------------------------------------------------- /apps/backend/schemaTypes/layout/menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/backend/schemaTypes/layout/menu.ts -------------------------------------------------------------------------------- /apps/backend/schemaTypes/modules/categories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/backend/schemaTypes/modules/categories.ts -------------------------------------------------------------------------------- /apps/backend/schemaTypes/modules/columns.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/backend/schemaTypes/modules/columns.ts -------------------------------------------------------------------------------- /apps/backend/schemaTypes/modules/contact.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/backend/schemaTypes/modules/contact.ts -------------------------------------------------------------------------------- /apps/backend/schemaTypes/modules/details.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/backend/schemaTypes/modules/details.ts -------------------------------------------------------------------------------- /apps/backend/schemaTypes/modules/disclaimer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/backend/schemaTypes/modules/disclaimer.ts -------------------------------------------------------------------------------- /apps/backend/schemaTypes/modules/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/backend/schemaTypes/modules/error.ts -------------------------------------------------------------------------------- /apps/backend/schemaTypes/modules/gallery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/backend/schemaTypes/modules/gallery.ts -------------------------------------------------------------------------------- /apps/backend/schemaTypes/modules/header.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/backend/schemaTypes/modules/header.ts -------------------------------------------------------------------------------- /apps/backend/schemaTypes/modules/hero.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/backend/schemaTypes/modules/hero.ts -------------------------------------------------------------------------------- /apps/backend/schemaTypes/modules/highlight.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/backend/schemaTypes/modules/highlight.ts -------------------------------------------------------------------------------- /apps/backend/schemaTypes/modules/information.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/backend/schemaTypes/modules/information.ts -------------------------------------------------------------------------------- /apps/backend/schemaTypes/modules/ingredients.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/backend/schemaTypes/modules/ingredients.ts -------------------------------------------------------------------------------- /apps/backend/schemaTypes/modules/intro.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/backend/schemaTypes/modules/intro.ts -------------------------------------------------------------------------------- /apps/backend/schemaTypes/modules/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/backend/schemaTypes/modules/list.ts -------------------------------------------------------------------------------- /apps/backend/schemaTypes/modules/lookbook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/backend/schemaTypes/modules/lookbook.ts -------------------------------------------------------------------------------- /apps/backend/schemaTypes/modules/marquee.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/backend/schemaTypes/modules/marquee.ts -------------------------------------------------------------------------------- /apps/backend/schemaTypes/modules/media.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/backend/schemaTypes/modules/media.ts -------------------------------------------------------------------------------- /apps/backend/schemaTypes/modules/quote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/backend/schemaTypes/modules/quote.ts -------------------------------------------------------------------------------- /apps/backend/schemaTypes/modules/seasons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/backend/schemaTypes/modules/seasons.ts -------------------------------------------------------------------------------- /apps/backend/schemaTypes/modules/shop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/backend/schemaTypes/modules/shop.ts -------------------------------------------------------------------------------- /apps/backend/schemaTypes/shared/content.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/backend/schemaTypes/shared/content.ts -------------------------------------------------------------------------------- /apps/backend/schemaTypes/shared/link.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/backend/schemaTypes/shared/link.ts -------------------------------------------------------------------------------- /apps/backend/schemaTypes/shared/social.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/backend/schemaTypes/shared/social.ts -------------------------------------------------------------------------------- /apps/backend/structure/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/backend/structure/index.ts -------------------------------------------------------------------------------- /apps/backend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/backend/tsconfig.json -------------------------------------------------------------------------------- /apps/frontend/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/.eslintrc.js -------------------------------------------------------------------------------- /apps/frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/.gitignore -------------------------------------------------------------------------------- /apps/frontend/.prettierrc: -------------------------------------------------------------------------------- 1 | "@lisergia/config-prettier" 2 | -------------------------------------------------------------------------------- /apps/frontend/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/CHANGELOG.md -------------------------------------------------------------------------------- /apps/frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/README.md -------------------------------------------------------------------------------- /apps/frontend/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/client.ts -------------------------------------------------------------------------------- /apps/frontend/controllers/newsletter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/controllers/newsletter.ts -------------------------------------------------------------------------------- /apps/frontend/controllers/page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/controllers/page.ts -------------------------------------------------------------------------------- /apps/frontend/download.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/download.ts -------------------------------------------------------------------------------- /apps/frontend/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/index.js -------------------------------------------------------------------------------- /apps/frontend/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/index.js.map -------------------------------------------------------------------------------- /apps/frontend/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/index.ts -------------------------------------------------------------------------------- /apps/frontend/nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/nodemon.json -------------------------------------------------------------------------------- /apps/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/package.json -------------------------------------------------------------------------------- /apps/frontend/router/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/router/index.ts -------------------------------------------------------------------------------- /apps/frontend/src/app/classes/Animation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/src/app/classes/Animation.ts -------------------------------------------------------------------------------- /apps/frontend/src/app/components/Menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/src/app/components/Menu.ts -------------------------------------------------------------------------------- /apps/frontend/src/app/components/Navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/src/app/components/Navigation.ts -------------------------------------------------------------------------------- /apps/frontend/src/app/components/Transition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/src/app/components/Transition.ts -------------------------------------------------------------------------------- /apps/frontend/src/app/datasets/Newsletter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/src/app/datasets/Newsletter.ts -------------------------------------------------------------------------------- /apps/frontend/src/app/datasets/Paragraph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/src/app/datasets/Paragraph.ts -------------------------------------------------------------------------------- /apps/frontend/src/app/datasets/Parallax.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/src/app/datasets/Parallax.ts -------------------------------------------------------------------------------- /apps/frontend/src/app/datasets/Reveal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/src/app/datasets/Reveal.ts -------------------------------------------------------------------------------- /apps/frontend/src/app/datasets/Source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/src/app/datasets/Source.ts -------------------------------------------------------------------------------- /apps/frontend/src/app/datasets/Title.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/src/app/datasets/Title.ts -------------------------------------------------------------------------------- /apps/frontend/src/app/datasets/Translate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/src/app/datasets/Translate.ts -------------------------------------------------------------------------------- /apps/frontend/src/app/datasets/sections/Categories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/src/app/datasets/sections/Categories.ts -------------------------------------------------------------------------------- /apps/frontend/src/app/datasets/sections/Details.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/src/app/datasets/sections/Details.ts -------------------------------------------------------------------------------- /apps/frontend/src/app/datasets/sections/Footer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/src/app/datasets/sections/Footer.ts -------------------------------------------------------------------------------- /apps/frontend/src/app/datasets/sections/Hero.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/src/app/datasets/sections/Hero.ts -------------------------------------------------------------------------------- /apps/frontend/src/app/datasets/sections/List.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/src/app/datasets/sections/List.ts -------------------------------------------------------------------------------- /apps/frontend/src/app/datasets/sections/Marquee.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/src/app/datasets/sections/Marquee.ts -------------------------------------------------------------------------------- /apps/frontend/src/app/datasets/sections/Media.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/src/app/datasets/sections/Media.ts -------------------------------------------------------------------------------- /apps/frontend/src/app/datasets/sections/Seasons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/src/app/datasets/sections/Seasons.ts -------------------------------------------------------------------------------- /apps/frontend/src/app/datasets/sections/Shop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/src/app/datasets/sections/Shop.ts -------------------------------------------------------------------------------- /apps/frontend/src/app/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/src/app/index.ts -------------------------------------------------------------------------------- /apps/frontend/src/app/templates/Standard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/src/app/templates/Standard.ts -------------------------------------------------------------------------------- /apps/frontend/src/shared/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/src/shared/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /apps/frontend/src/shared/favicon/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/src/shared/favicon/favicon-96x96.png -------------------------------------------------------------------------------- /apps/frontend/src/shared/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/src/shared/favicon/favicon.ico -------------------------------------------------------------------------------- /apps/frontend/src/shared/favicon/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/src/shared/favicon/favicon.svg -------------------------------------------------------------------------------- /apps/frontend/src/shared/favicon/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/src/shared/favicon/site.webmanifest -------------------------------------------------------------------------------- /apps/frontend/src/shared/favicon/web-app-manifest-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/src/shared/favicon/web-app-manifest-192x192.png -------------------------------------------------------------------------------- /apps/frontend/src/shared/favicon/web-app-manifest-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/src/shared/favicon/web-app-manifest-512x512.png -------------------------------------------------------------------------------- /apps/frontend/src/shared/fonts/editorial-new.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/src/shared/fonts/editorial-new.woff -------------------------------------------------------------------------------- /apps/frontend/src/shared/fonts/editorial-new.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/src/shared/fonts/editorial-new.woff2 -------------------------------------------------------------------------------- /apps/frontend/src/shared/fonts/neue-montreal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/src/shared/fonts/neue-montreal.woff -------------------------------------------------------------------------------- /apps/frontend/src/shared/fonts/neue-montreal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/src/shared/fonts/neue-montreal.woff2 -------------------------------------------------------------------------------- /apps/frontend/src/shared/open-graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/src/shared/open-graph.png -------------------------------------------------------------------------------- /apps/frontend/src/shared/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | -------------------------------------------------------------------------------- /apps/frontend/src/sprites/instagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/src/sprites/instagram.svg -------------------------------------------------------------------------------- /apps/frontend/src/sprites/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/src/sprites/twitter.svg -------------------------------------------------------------------------------- /apps/frontend/src/styles/base/fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/src/styles/base/fonts.scss -------------------------------------------------------------------------------- /apps/frontend/src/styles/base/reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/src/styles/base/reset.scss -------------------------------------------------------------------------------- /apps/frontend/src/styles/components/bag.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/src/styles/components/bag.scss -------------------------------------------------------------------------------- /apps/frontend/src/styles/components/footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/src/styles/components/footer.scss -------------------------------------------------------------------------------- /apps/frontend/src/styles/components/menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/src/styles/components/menu.scss -------------------------------------------------------------------------------- /apps/frontend/src/styles/components/navigation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/src/styles/components/navigation.scss -------------------------------------------------------------------------------- /apps/frontend/src/styles/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/src/styles/index.scss -------------------------------------------------------------------------------- /apps/frontend/src/styles/pages/page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/src/styles/pages/page.scss -------------------------------------------------------------------------------- /apps/frontend/src/styles/sections/categories.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/src/styles/sections/categories.scss -------------------------------------------------------------------------------- /apps/frontend/src/styles/sections/columns.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/src/styles/sections/columns.scss -------------------------------------------------------------------------------- /apps/frontend/src/styles/sections/contact.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/src/styles/sections/contact.scss -------------------------------------------------------------------------------- /apps/frontend/src/styles/sections/details.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/src/styles/sections/details.scss -------------------------------------------------------------------------------- /apps/frontend/src/styles/sections/disclaimer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/src/styles/sections/disclaimer.scss -------------------------------------------------------------------------------- /apps/frontend/src/styles/sections/error.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/src/styles/sections/error.scss -------------------------------------------------------------------------------- /apps/frontend/src/styles/sections/gallery.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/src/styles/sections/gallery.scss -------------------------------------------------------------------------------- /apps/frontend/src/styles/sections/header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/src/styles/sections/header.scss -------------------------------------------------------------------------------- /apps/frontend/src/styles/sections/hero.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/src/styles/sections/hero.scss -------------------------------------------------------------------------------- /apps/frontend/src/styles/sections/highlight.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/src/styles/sections/highlight.scss -------------------------------------------------------------------------------- /apps/frontend/src/styles/sections/information.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/src/styles/sections/information.scss -------------------------------------------------------------------------------- /apps/frontend/src/styles/sections/ingredients.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/src/styles/sections/ingredients.scss -------------------------------------------------------------------------------- /apps/frontend/src/styles/sections/intro.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/src/styles/sections/intro.scss -------------------------------------------------------------------------------- /apps/frontend/src/styles/sections/list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/src/styles/sections/list.scss -------------------------------------------------------------------------------- /apps/frontend/src/styles/sections/lookbook.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/src/styles/sections/lookbook.scss -------------------------------------------------------------------------------- /apps/frontend/src/styles/sections/marquee.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/src/styles/sections/marquee.scss -------------------------------------------------------------------------------- /apps/frontend/src/styles/sections/media.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/src/styles/sections/media.scss -------------------------------------------------------------------------------- /apps/frontend/src/styles/sections/quote.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/src/styles/sections/quote.scss -------------------------------------------------------------------------------- /apps/frontend/src/styles/sections/seasons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/src/styles/sections/seasons.scss -------------------------------------------------------------------------------- /apps/frontend/src/styles/sections/shop.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/src/styles/sections/shop.scss -------------------------------------------------------------------------------- /apps/frontend/src/styles/shared/animations.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/src/styles/shared/animations.scss -------------------------------------------------------------------------------- /apps/frontend/src/styles/shared/button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/src/styles/shared/button.scss -------------------------------------------------------------------------------- /apps/frontend/src/styles/shared/links.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/src/styles/shared/links.scss -------------------------------------------------------------------------------- /apps/frontend/src/styles/shared/sections.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/src/styles/shared/sections.scss -------------------------------------------------------------------------------- /apps/frontend/src/styles/utils/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/src/styles/utils/variables.scss -------------------------------------------------------------------------------- /apps/frontend/stylelint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/stylelint.config.js -------------------------------------------------------------------------------- /apps/frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/tsconfig.json -------------------------------------------------------------------------------- /apps/frontend/tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/tsup.config.ts -------------------------------------------------------------------------------- /apps/frontend/utilities/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/utilities/data.ts -------------------------------------------------------------------------------- /apps/frontend/vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/vercel.json -------------------------------------------------------------------------------- /apps/frontend/views/base.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/views/base.twig -------------------------------------------------------------------------------- /apps/frontend/views/components/button.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/views/components/button.twig -------------------------------------------------------------------------------- /apps/frontend/views/layout/footer.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/views/layout/footer.twig -------------------------------------------------------------------------------- /apps/frontend/views/layout/menu.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/views/layout/menu.twig -------------------------------------------------------------------------------- /apps/frontend/views/layout/navigation.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/views/layout/navigation.twig -------------------------------------------------------------------------------- /apps/frontend/views/pages/page.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/views/pages/page.twig -------------------------------------------------------------------------------- /apps/frontend/views/sections/_categories.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/views/sections/_categories.twig -------------------------------------------------------------------------------- /apps/frontend/views/sections/_columns.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/views/sections/_columns.twig -------------------------------------------------------------------------------- /apps/frontend/views/sections/_contact.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/views/sections/_contact.twig -------------------------------------------------------------------------------- /apps/frontend/views/sections/_details.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/views/sections/_details.twig -------------------------------------------------------------------------------- /apps/frontend/views/sections/_disclaimer.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/views/sections/_disclaimer.twig -------------------------------------------------------------------------------- /apps/frontend/views/sections/_error.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/views/sections/_error.twig -------------------------------------------------------------------------------- /apps/frontend/views/sections/_gallery.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/views/sections/_gallery.twig -------------------------------------------------------------------------------- /apps/frontend/views/sections/_header.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/views/sections/_header.twig -------------------------------------------------------------------------------- /apps/frontend/views/sections/_hero.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/views/sections/_hero.twig -------------------------------------------------------------------------------- /apps/frontend/views/sections/_highlight.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/views/sections/_highlight.twig -------------------------------------------------------------------------------- /apps/frontend/views/sections/_information.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/views/sections/_information.twig -------------------------------------------------------------------------------- /apps/frontend/views/sections/_ingredients.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/views/sections/_ingredients.twig -------------------------------------------------------------------------------- /apps/frontend/views/sections/_intro.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/views/sections/_intro.twig -------------------------------------------------------------------------------- /apps/frontend/views/sections/_list.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/views/sections/_list.twig -------------------------------------------------------------------------------- /apps/frontend/views/sections/_lookbook.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/views/sections/_lookbook.twig -------------------------------------------------------------------------------- /apps/frontend/views/sections/_marquee.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/views/sections/_marquee.twig -------------------------------------------------------------------------------- /apps/frontend/views/sections/_media.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/views/sections/_media.twig -------------------------------------------------------------------------------- /apps/frontend/views/sections/_quote.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/views/sections/_quote.twig -------------------------------------------------------------------------------- /apps/frontend/views/sections/_seasons.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/views/sections/_seasons.twig -------------------------------------------------------------------------------- /apps/frontend/views/sections/_shop.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/views/sections/_shop.twig -------------------------------------------------------------------------------- /apps/frontend/views/sections/index.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/views/sections/index.twig -------------------------------------------------------------------------------- /apps/frontend/views/shared/header.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/views/shared/header.twig -------------------------------------------------------------------------------- /apps/frontend/views/shared/scripts.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/apps/frontend/views/shared/scripts.twig -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/package.json -------------------------------------------------------------------------------- /packages/cli/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/packages/cli/.eslintrc.js -------------------------------------------------------------------------------- /packages/cli/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/packages/cli/CHANGELOG.md -------------------------------------------------------------------------------- /packages/cli/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/packages/cli/index.js -------------------------------------------------------------------------------- /packages/cli/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/packages/cli/package.json -------------------------------------------------------------------------------- /packages/config-eslint/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: ['./index.js'], 4 | } 5 | -------------------------------------------------------------------------------- /packages/config-eslint/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/packages/config-eslint/CHANGELOG.md -------------------------------------------------------------------------------- /packages/config-eslint/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/packages/config-eslint/index.js -------------------------------------------------------------------------------- /packages/config-eslint/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/packages/config-eslint/package.json -------------------------------------------------------------------------------- /packages/config-prettier/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/packages/config-prettier/CHANGELOG.md -------------------------------------------------------------------------------- /packages/config-prettier/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/packages/config-prettier/index.js -------------------------------------------------------------------------------- /packages/config-prettier/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/packages/config-prettier/package.json -------------------------------------------------------------------------------- /packages/config-stylelint/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/packages/config-stylelint/CHANGELOG.md -------------------------------------------------------------------------------- /packages/config-stylelint/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/packages/config-stylelint/index.js -------------------------------------------------------------------------------- /packages/config-stylelint/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/packages/config-stylelint/package.json -------------------------------------------------------------------------------- /packages/config-tsconfig/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/packages/config-tsconfig/CHANGELOG.md -------------------------------------------------------------------------------- /packages/config-tsconfig/base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/packages/config-tsconfig/base.json -------------------------------------------------------------------------------- /packages/config-tsconfig/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/packages/config-tsconfig/package.json -------------------------------------------------------------------------------- /packages/core/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/packages/core/CHANGELOG.md -------------------------------------------------------------------------------- /packages/core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/packages/core/package.json -------------------------------------------------------------------------------- /packages/core/src/App.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/packages/core/src/App.ts -------------------------------------------------------------------------------- /packages/core/src/Component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/packages/core/src/Component.ts -------------------------------------------------------------------------------- /packages/core/src/EventEmitter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/packages/core/src/EventEmitter.ts -------------------------------------------------------------------------------- /packages/core/src/Link.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/packages/core/src/Link.ts -------------------------------------------------------------------------------- /packages/core/src/Links.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/packages/core/src/Links.ts -------------------------------------------------------------------------------- /packages/core/src/Page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/packages/core/src/Page.ts -------------------------------------------------------------------------------- /packages/core/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/packages/core/src/index.ts -------------------------------------------------------------------------------- /packages/core/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/packages/core/tsconfig.json -------------------------------------------------------------------------------- /packages/managers/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/packages/managers/CHANGELOG.md -------------------------------------------------------------------------------- /packages/managers/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/packages/managers/package.json -------------------------------------------------------------------------------- /packages/managers/src/Pointer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/packages/managers/src/Pointer.ts -------------------------------------------------------------------------------- /packages/managers/src/Viewport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/packages/managers/src/Viewport.ts -------------------------------------------------------------------------------- /packages/managers/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/packages/managers/src/index.ts -------------------------------------------------------------------------------- /packages/managers/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/packages/managers/tsconfig.json -------------------------------------------------------------------------------- /packages/styles/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/packages/styles/CHANGELOG.md -------------------------------------------------------------------------------- /packages/styles/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/packages/styles/package.json -------------------------------------------------------------------------------- /packages/styles/scss/base/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/packages/styles/scss/base/app.scss -------------------------------------------------------------------------------- /packages/styles/scss/base/lenis.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/packages/styles/scss/base/lenis.scss -------------------------------------------------------------------------------- /packages/styles/scss/base/reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/packages/styles/scss/base/reset.scss -------------------------------------------------------------------------------- /packages/styles/scss/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/packages/styles/scss/index.scss -------------------------------------------------------------------------------- /packages/styles/scss/plugins/include-media-library.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/packages/styles/scss/plugins/include-media-library.scss -------------------------------------------------------------------------------- /packages/styles/scss/plugins/include-media.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/packages/styles/scss/plugins/include-media.scss -------------------------------------------------------------------------------- /packages/styles/scss/utils/functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/packages/styles/scss/utils/functions.scss -------------------------------------------------------------------------------- /packages/styles/scss/utils/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/packages/styles/scss/utils/mixins.scss -------------------------------------------------------------------------------- /packages/styles/scss/variables/easings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/packages/styles/scss/variables/easings.scss -------------------------------------------------------------------------------- /packages/styles/stylelint.config.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@lisergia/config-stylelint') 2 | -------------------------------------------------------------------------------- /packages/utilities/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/packages/utilities/CHANGELOG.md -------------------------------------------------------------------------------- /packages/utilities/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/packages/utilities/package.json -------------------------------------------------------------------------------- /packages/utilities/src/Canvas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/packages/utilities/src/Canvas.ts -------------------------------------------------------------------------------- /packages/utilities/src/DOM.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/packages/utilities/src/DOM.ts -------------------------------------------------------------------------------- /packages/utilities/src/Detection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/packages/utilities/src/Detection.ts -------------------------------------------------------------------------------- /packages/utilities/src/Math.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/packages/utilities/src/Math.ts -------------------------------------------------------------------------------- /packages/utilities/src/Polyfill.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/packages/utilities/src/Polyfill.ts -------------------------------------------------------------------------------- /packages/utilities/src/Promises.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/packages/utilities/src/Promises.ts -------------------------------------------------------------------------------- /packages/utilities/src/Tempus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/packages/utilities/src/Tempus.ts -------------------------------------------------------------------------------- /packages/utilities/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/packages/utilities/src/index.ts -------------------------------------------------------------------------------- /packages/utilities/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/packages/utilities/tsconfig.json -------------------------------------------------------------------------------- /turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bizarro/lisergia/HEAD/turbo.json --------------------------------------------------------------------------------