Sample Page

Rendered Content from WordPress

This is a sample page. It's different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:

this custom CoreQuote component renders it as a Nuxt UI UAlert component, and uses the citation attribute (if present) as the title of the alert.

Hi there! I'm a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin' caught in the rain.)

...or something like this:

this custom CoreQuote component renders it as a Nuxt UI UAlert component, and uses the citation attribute (if present) as the title of the alert.

The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.

As a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!

Heading

this custom CoreButton component renders it as a Nuxt UI UButton component, adds a subtle variant to the button, and a size of xl.
Button

Making this button blue was done by overriding the CoreButton component:

<script setup lang="ts">
import type { CoreButton } from '#wpnuxt/blocks'

defineProps<{
  block: CoreButton
}>()
</script>

<template>
  <div>
    <UButton
      :to="block.attributes.url"
      color="blue"
    >
      Blue <span v-sanitize="block.attributes.text" />
    </UButton>
  </div>
</template>