Looka Theme Documentation
MDX Components And Shortcodes
These themes auto-import MDX components so you can use them without manual imports.
Where They Come From
- Components live in
src/layouts/shortcodes/. - Auto-import is configured in
astro.config.mjsunderAutoImport.
Use A Component In MDX
- Open any
.mdxfile insrc/content/. - Add the component tag in the content body.
- Save and refresh the page.
Examples
<Tabs> <Tab name="Overview"> This is the first tab. </Tab> <Tab name="Details"> This is the second tab. </Tab></Tabs><Accordion label="FAQ 1" group="faq" expanded="true"> This is the accordion content.</Accordion>Tip
Open astro.config.mjs and check the AutoImport list to see all available components.