Official conference website
Nuxt 3 implementation We recommend to look at the documentation.
Make sure to install the dependencies
yarn installStart the development server on http://localhost:3000
yarn devBuild the application for production:
yarn buildUI inspiration from this https://demo.themewinter.com/wp/exhibz/home-9
All components sit in /components directory. check on nuxt 3
All styling are handled by Tailwindcss including paddings, margins, colors, font sizes etc.
All colors are included in the tailwind.config.js file. Any added color has to have a provision for dark theme and classes included in code too;
<span class="text-primary dark:text-primary-dark"></span>The file assets/css/main.css has some already applied classes, you can add more here
Checkout the deployment documentation.