When you enable the seo option in the module configuration, the module will add the useStatamicSeo composable to your project.
Almost all SEO metadata will be automatically configured based on the data from the Statamic CMS.
<script setup lang="ts">
const { data, error } = await useStatamicPage();
useStatamicPageErrorHandler(error);
useStatamicSeo(data);
</script>