···11+# About Content Version 3
22+33+[Back home](/)
+9
content/index.md
···11+# Howdy
22+33+gm112 waz here. I will make this into a little corner of the internet soon!
44+55+<!-- markdownlint-disable-next-line MD013 -->
66+77+{
88+class="h-full w-full max-w-lg animate-rotate object-cover"
99+}
+30
content/test.md
···11+# Welcome to Nuxt Content Starter
22+33+This is the main page displaying Markdown located at [content/index.md](https://github.com/nuxt/starter/blob/content/content/index.md).
44+55+Move to [about](/about) page.
66+77+## Manage your Contents
88+99+Create new pages or modify the existing ones in `content/` directory.
1010+1111+## Query & Render Pages
1212+1313+You can find an example of querying contents and rendering them in a
1414+[catch-all page](https://github.com/nuxt/starter/blob/content/app/pages/%5B...slug%5D.vue)
1515+1616+## Integrate Vue Component
1717+1818+::u-alert{icon="i-lucide-info" title="Nuxt Content is optional" color="info"}
1919+#description
2020+The current [alert](https://github.com/nuxt/starter/blob/content/app/components/Alert.vue)
2121+and the [counter](https://github.com/nuxt/starter/blob/content/app/components/Counter.vue)
2222+below are `Vue` components integrated into the Markdown.
2323+::
2424+::
2525+2626+::derp-counter
2727+::
2828+2929+Checkout out the [documentation](https://content.nuxt.com/docs/getting-started)
3030+to learn more.
+6
eslint.config.mjs
···11+// @ts-check
22+import withNuxt from './.nuxt/eslint.config.mjs'
33+44+export default withNuxt(
55+ // Your custom configs here
66+)