import { useContent, useLocation } from '@builder.io/qwik-city'; import { component$, useStyles$ } from '@builder.io/qwik'; import styles from './on-this-page.css?inline'; export default component$(() => { useStyles$(styles); const { headings } = useContent(); const contentHeadings = headings?.filter((h) => h.level === 2 || h.level === 3) || []; const { pathname } = useLocation(); const editUrl = `#update-your-edit-url-for-${pathname}`; return ( ); });