The first time you run the Apollux project, you should see the Apollux Welcome page. To replace it, you need to create a Single-File Vue Component in .app/pages/index.vue.
Empty page example
.app/pages/index.vue
Discover components
Take a look at the .demo/pages/ folder to see how to assemble your page. You will see that most pages are built with reusable components,
some are prefixed by Base, Apollux, Demo and a few with Addon.
Baseprefix is used for UI components (Shuriken UI components), sometimes known as atoms, like buttons, inputs, etc...Apolluxprefix is used for components that are specific to the project layouts, or reusable components that have no dependenciesDemoprefix is used for components that are specific to the demo, like the quick search, widgets, etc...Addonprefix is for components that have external dependencies, like the markdown editor, charts, etc...
Useful resources: