Quick Talk
24 May 2024 by erwan | Leave a Comment
a very nice prototyping feature given by FilamentPHP is the possibility to create select multiple values in the form with options from a class scoped array , without creating BelongToMany relationships that involve an extra table. The kind of issue for which sushi package was created, but we don't need that here, or I might […]
Read more »
21 May 2024 by erwan | Leave a Comment
While searching for new ways of dealing with custom tailwind css templates within modern CMS, I searched wysiwyg editor news. Components https://editorjs.io has block management, and can convert a block type : imagine you start typing a text and want it to be a header, editor js allows that. Gutenberg does not . https://quilljs.com/ looks […]
6 May 2024 by erwan | Leave a Comment
started working with tailwind css, at first it really seemed impossible to code responsive menu with hierarchy in nuxtjs. NextJs has lots of nice template but nuxt seems behind , cruip sells templates for vue but not for nuxt 3, not yet though , and I finally found a nuxt2 template , which has been […]
3 May 2024 by erwan | Leave a Comment
there is a long discussion on nuxt forum on how to properly integrate AOS animation library. The objective here for me is to experiment this light animation library without using npm with the aos nuxt module , instead i want to use CDN. This is quite straightforward with Nuxt and good alternative if you don't […]
2 May 2024 by erwan | Leave a Comment
After finding a solid basic tailwind starter on stackblitz (github repository), I go on further creative stuff. template requirements this template is a vue / vite / Tailwind responsive website with top navigation hierarchical menu : a good start for developing most web sites. First thing is to fork the starter to start working on […]