diff --git a/apps/website/src/content/docs/guides/page-structure.md b/apps/website/src/content/docs/guides/page-structure.md
deleted file mode 100644
index 72cb60d6aa9..00000000000
--- a/apps/website/src/content/docs/guides/page-structure.md
+++ /dev/null
@@ -1,73 +0,0 @@
----
-title: Page structure
-description: The expected structure of pages (screens) in your interface
----
-
-Each screen, or page, in your interface is likely to include **StrataKit** components and product-specific components not available in **StrataKit**. While the structure of pages will differ between products, they must be consistent, predictable, and include the following considerations.
-
-## Metadata
-
-### Page language
-
-Place a `lang` attribute on the `` element to identify the predominant language of the page. For example, the value `en` designates English as the page’s language.
-
-```html
-
-```
-
-This assists page translation tools and enables the selection of an appropriate synthetic voice in screen reader software.
-
-### Page title
-
-For each page or screen in your application, include a title, using the `
` element. The title text must identify both the page and the application to which it belongs. If you are using a root JSX layout, these separate parts may be stored in variables, as in the following example. Use a separator, like a dash or colon, between the page and application parts.
-
-```html
-{pageInfo} - {appName}
-```
-
-Think of the title as a label for the page. It must be unique (among pages in your application) and suitably descriptive.
-
-Along with a favicon, the title is how tabs are differentiated visually. The title is also especially useful to screen reader users, who will hear it announced upon page load. It is recommended you include a favicon in the SVG format, since it is not resolution dependent.
-
-```html
-
-```
-
-If yours is a single-page application, ensure the title is updated as the application route is changed. To ensure the new title in announced, supplement the title change with an [ARIA live region](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Reference/Attributes/aria-live). [Some router libraries do this automatically](https://nextjs.org/docs/architecture/accessibility#route-announcements).
-
-## Structure
-
-The semantic structure of your page or screen, defined in HTML, is paramount. It must reflect the visual structure and hierarchy.
-
-### Landmarks
-
-[Landmarks](https://www.w3.org/WAI/ARIA/apg/practices/landmark-regions/) are the continents in the map of your interface. Landmarks are large and few in number. Everything (all components) must belong to one landmark or another. They have specific purposes:
-
-- ``: Include just once per screen/page. This encapsulates the main, unique content of the screen.
-- ``: Include just one at the start of the document. This may contain a principle `