@kamod-ch/preactpress 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +165 -0
- package/assets/favicon-32.png +0 -0
- package/assets/favicon.png +0 -0
- package/assets/favicon.svg +28 -0
- package/assets/logo-dark.svg +5 -0
- package/assets/logo-light.svg +5 -0
- package/assets/logo.svg +5 -0
- package/bin/preactpress.mjs +13 -0
- package/dist/client/app.d.ts +6 -0
- package/dist/client/app.d.ts.map +1 -0
- package/dist/client/app.js +168 -0
- package/dist/client/app.js.map +1 -0
- package/dist/client/entry-client.d.ts +2 -0
- package/dist/client/entry-client.d.ts.map +1 -0
- package/dist/client/entry-client.js +27 -0
- package/dist/client/entry-client.js.map +1 -0
- package/dist/client/entry-ssr.d.ts +14 -0
- package/dist/client/entry-ssr.d.ts.map +1 -0
- package/dist/client/entry-ssr.js +59 -0
- package/dist/client/entry-ssr.js.map +1 -0
- package/dist/client/index.d.ts +3 -0
- package/dist/client/index.d.ts.map +1 -0
- package/dist/client/index.js +2 -0
- package/dist/client/index.js.map +1 -0
- package/dist/client/loadPage.d.ts +5 -0
- package/dist/client/loadPage.d.ts.map +1 -0
- package/dist/client/loadPage.js +62 -0
- package/dist/client/loadPage.js.map +1 -0
- package/dist/client/prefetchLinks.d.ts +2 -0
- package/dist/client/prefetchLinks.d.ts.map +1 -0
- package/dist/client/prefetchLinks.js +55 -0
- package/dist/client/prefetchLinks.js.map +1 -0
- package/dist/client/theme-default/AlgoliaSearch.d.ts +12 -0
- package/dist/client/theme-default/AlgoliaSearch.d.ts.map +1 -0
- package/dist/client/theme-default/AlgoliaSearch.js +66 -0
- package/dist/client/theme-default/AlgoliaSearch.js.map +1 -0
- package/dist/client/theme-default/Features.d.ts +9 -0
- package/dist/client/theme-default/Features.d.ts.map +1 -0
- package/dist/client/theme-default/Features.js +25 -0
- package/dist/client/theme-default/Features.js.map +1 -0
- package/dist/client/theme-default/Hero.d.ts +9 -0
- package/dist/client/theme-default/Hero.d.ts.map +1 -0
- package/dist/client/theme-default/Hero.js +23 -0
- package/dist/client/theme-default/Hero.js.map +1 -0
- package/dist/client/theme-default/Layout.d.ts +6 -0
- package/dist/client/theme-default/Layout.d.ts.map +1 -0
- package/dist/client/theme-default/Layout.js +224 -0
- package/dist/client/theme-default/Layout.js.map +1 -0
- package/dist/client/theme-default/Logo.d.ts +16 -0
- package/dist/client/theme-default/Logo.d.ts.map +1 -0
- package/dist/client/theme-default/Logo.js +30 -0
- package/dist/client/theme-default/Logo.js.map +1 -0
- package/dist/client/theme-default/NavLinks.d.ts +12 -0
- package/dist/client/theme-default/NavLinks.d.ts.map +1 -0
- package/dist/client/theme-default/NavLinks.js +18 -0
- package/dist/client/theme-default/NavLinks.js.map +1 -0
- package/dist/client/theme-default/SidebarNav.d.ts +12 -0
- package/dist/client/theme-default/SidebarNav.d.ts.map +1 -0
- package/dist/client/theme-default/SidebarNav.js +21 -0
- package/dist/client/theme-default/SidebarNav.js.map +1 -0
- package/dist/client/theme-default/SocialLinks.d.ts +8 -0
- package/dist/client/theme-default/SocialLinks.d.ts.map +1 -0
- package/dist/client/theme-default/SocialLinks.js +13 -0
- package/dist/client/theme-default/SocialLinks.js.map +1 -0
- package/dist/client/theme-default/ThemeToggle.d.ts +4 -0
- package/dist/client/theme-default/ThemeToggle.d.ts.map +1 -0
- package/dist/client/theme-default/ThemeToggle.js +31 -0
- package/dist/client/theme-default/ThemeToggle.js.map +1 -0
- package/dist/client/theme-default/index.d.ts +2 -0
- package/dist/client/theme-default/index.d.ts.map +1 -0
- package/dist/client/theme-default/index.js +2 -0
- package/dist/client/theme-default/index.js.map +1 -0
- package/dist/client/types.d.ts +36 -0
- package/dist/client/types.d.ts.map +1 -0
- package/dist/client/types.js +2 -0
- package/dist/client/types.js.map +1 -0
- package/dist/client/usePageHead.d.ts +10 -0
- package/dist/client/usePageHead.d.ts.map +1 -0
- package/dist/client/usePageHead.js +182 -0
- package/dist/client/usePageHead.js.map +1 -0
- package/dist/client/useSiteSearch.d.ts +10 -0
- package/dist/client/useSiteSearch.d.ts.map +1 -0
- package/dist/client/useSiteSearch.js +54 -0
- package/dist/client/useSiteSearch.js.map +1 -0
- package/dist/node/build.d.ts +15 -0
- package/dist/node/build.d.ts.map +1 -0
- package/dist/node/build.js +310 -0
- package/dist/node/build.js.map +1 -0
- package/dist/node/buildCache.d.ts +15 -0
- package/dist/node/buildCache.d.ts.map +1 -0
- package/dist/node/buildCache.js +41 -0
- package/dist/node/buildCache.js.map +1 -0
- package/dist/node/check.d.ts +11 -0
- package/dist/node/check.d.ts.map +1 -0
- package/dist/node/check.js +228 -0
- package/dist/node/check.js.map +1 -0
- package/dist/node/cli.d.ts +2 -0
- package/dist/node/cli.d.ts.map +1 -0
- package/dist/node/cli.js +157 -0
- package/dist/node/cli.js.map +1 -0
- package/dist/node/config-helpers.d.ts +8 -0
- package/dist/node/config-helpers.d.ts.map +1 -0
- package/dist/node/config-helpers.js +5 -0
- package/dist/node/config-helpers.js.map +1 -0
- package/dist/node/config.d.ts +13 -0
- package/dist/node/config.d.ts.map +1 -0
- package/dist/node/config.js +167 -0
- package/dist/node/config.js.map +1 -0
- package/dist/node/content.d.ts +16 -0
- package/dist/node/content.d.ts.map +1 -0
- package/dist/node/content.js +72 -0
- package/dist/node/content.js.map +1 -0
- package/dist/node/createContentLoader.d.ts +19 -0
- package/dist/node/createContentLoader.d.ts.map +1 -0
- package/dist/node/createContentLoader.js +11 -0
- package/dist/node/createContentLoader.js.map +1 -0
- package/dist/node/devCss.d.ts +7 -0
- package/dist/node/devCss.d.ts.map +1 -0
- package/dist/node/devCss.js +70 -0
- package/dist/node/devCss.js.map +1 -0
- package/dist/node/devSsr.d.ts +6 -0
- package/dist/node/devSsr.d.ts.map +1 -0
- package/dist/node/devSsr.js +112 -0
- package/dist/node/devSsr.js.map +1 -0
- package/dist/node/dynamicRoutes.d.ts +21 -0
- package/dist/node/dynamicRoutes.d.ts.map +1 -0
- package/dist/node/dynamicRoutes.js +120 -0
- package/dist/node/dynamicRoutes.js.map +1 -0
- package/dist/node/favicon.d.ts +9 -0
- package/dist/node/favicon.d.ts.map +1 -0
- package/dist/node/favicon.js +71 -0
- package/dist/node/favicon.js.map +1 -0
- package/dist/node/feed.d.ts +7 -0
- package/dist/node/feed.d.ts.map +1 -0
- package/dist/node/feed.js +37 -0
- package/dist/node/feed.js.map +1 -0
- package/dist/node/hooks.d.ts +9 -0
- package/dist/node/hooks.d.ts.map +1 -0
- package/dist/node/hooks.js +20 -0
- package/dist/node/hooks.js.map +1 -0
- package/dist/node/html.d.ts +56 -0
- package/dist/node/html.d.ts.map +1 -0
- package/dist/node/html.js +222 -0
- package/dist/node/html.js.map +1 -0
- package/dist/node/index.d.ts +12 -0
- package/dist/node/index.d.ts.map +1 -0
- package/dist/node/index.js +9 -0
- package/dist/node/index.js.map +1 -0
- package/dist/node/init.d.ts +12 -0
- package/dist/node/init.d.ts.map +1 -0
- package/dist/node/init.js +93 -0
- package/dist/node/init.js.map +1 -0
- package/dist/node/lastUpdated.d.ts +3 -0
- package/dist/node/lastUpdated.d.ts.map +1 -0
- package/dist/node/lastUpdated.js +24 -0
- package/dist/node/lastUpdated.js.map +1 -0
- package/dist/node/loadSiteModule.d.ts +2 -0
- package/dist/node/loadSiteModule.d.ts.map +1 -0
- package/dist/node/loadSiteModule.js +10 -0
- package/dist/node/loadSiteModule.js.map +1 -0
- package/dist/node/markdown.d.ts +31 -0
- package/dist/node/markdown.d.ts.map +1 -0
- package/dist/node/markdown.js +508 -0
- package/dist/node/markdown.js.map +1 -0
- package/dist/node/markdownHeadings.d.ts +12 -0
- package/dist/node/markdownHeadings.d.ts.map +1 -0
- package/dist/node/markdownHeadings.js +70 -0
- package/dist/node/markdownHeadings.js.map +1 -0
- package/dist/node/markdownInclude.d.ts +6 -0
- package/dist/node/markdownInclude.d.ts.map +1 -0
- package/dist/node/markdownInclude.js +74 -0
- package/dist/node/markdownInclude.js.map +1 -0
- package/dist/node/markdownSnippets.d.ts +32 -0
- package/dist/node/markdownSnippets.d.ts.map +1 -0
- package/dist/node/markdownSnippets.js +172 -0
- package/dist/node/markdownSnippets.js.map +1 -0
- package/dist/node/mdx.d.ts +3 -0
- package/dist/node/mdx.d.ts.map +1 -0
- package/dist/node/mdx.js +9 -0
- package/dist/node/mdx.js.map +1 -0
- package/dist/node/packageRoot.d.ts +4 -0
- package/dist/node/packageRoot.d.ts.map +1 -0
- package/dist/node/packageRoot.js +7 -0
- package/dist/node/packageRoot.js.map +1 -0
- package/dist/node/pageDataLoaders.d.ts +6 -0
- package/dist/node/pageDataLoaders.d.ts.map +1 -0
- package/dist/node/pageDataLoaders.js +68 -0
- package/dist/node/pageDataLoaders.js.map +1 -0
- package/dist/node/paths.d.ts +5 -0
- package/dist/node/paths.d.ts.map +1 -0
- package/dist/node/paths.js +12 -0
- package/dist/node/paths.js.map +1 -0
- package/dist/node/plugin.d.ts +7 -0
- package/dist/node/plugin.d.ts.map +1 -0
- package/dist/node/plugin.js +282 -0
- package/dist/node/plugin.js.map +1 -0
- package/dist/node/resolveDeps.d.ts +5 -0
- package/dist/node/resolveDeps.d.ts.map +1 -0
- package/dist/node/resolveDeps.js +25 -0
- package/dist/node/resolveDeps.js.map +1 -0
- package/dist/node/serve.d.ts +6 -0
- package/dist/node/serve.d.ts.map +1 -0
- package/dist/node/serve.js +41 -0
- package/dist/node/serve.js.map +1 -0
- package/dist/node/server.d.ts +7 -0
- package/dist/node/server.d.ts.map +1 -0
- package/dist/node/server.js +55 -0
- package/dist/node/server.js.map +1 -0
- package/dist/node/siteConfig.d.ts +206 -0
- package/dist/node/siteConfig.d.ts.map +1 -0
- package/dist/node/siteConfig.js +2 -0
- package/dist/node/siteConfig.js.map +1 -0
- package/dist/node/tagIndex.d.ts +27 -0
- package/dist/node/tagIndex.d.ts.map +1 -0
- package/dist/node/tagIndex.js +84 -0
- package/dist/node/tagIndex.js.map +1 -0
- package/dist/shared/contentChunk.d.ts +4 -0
- package/dist/shared/contentChunk.d.ts.map +1 -0
- package/dist/shared/contentChunk.js +14 -0
- package/dist/shared/contentChunk.js.map +1 -0
- package/dist/shared/contentSchema.d.ts +43 -0
- package/dist/shared/contentSchema.d.ts.map +1 -0
- package/dist/shared/contentSchema.js +44 -0
- package/dist/shared/contentSchema.js.map +1 -0
- package/dist/shared/deadLinks.d.ts +9 -0
- package/dist/shared/deadLinks.d.ts.map +1 -0
- package/dist/shared/deadLinks.js +27 -0
- package/dist/shared/deadLinks.js.map +1 -0
- package/dist/shared/escapeHtml.d.ts +3 -0
- package/dist/shared/escapeHtml.d.ts.map +1 -0
- package/dist/shared/escapeHtml.js +11 -0
- package/dist/shared/escapeHtml.js.map +1 -0
- package/dist/shared/index.d.ts +15 -0
- package/dist/shared/index.d.ts.map +1 -0
- package/dist/shared/index.js +15 -0
- package/dist/shared/index.js.map +1 -0
- package/dist/shared/locale.d.ts +11 -0
- package/dist/shared/locale.d.ts.map +1 -0
- package/dist/shared/locale.js +84 -0
- package/dist/shared/locale.js.map +1 -0
- package/dist/shared/pageChrome.d.ts +80 -0
- package/dist/shared/pageChrome.d.ts.map +1 -0
- package/dist/shared/pageChrome.js +160 -0
- package/dist/shared/pageChrome.js.map +1 -0
- package/dist/shared/pageHead.d.ts +3 -0
- package/dist/shared/pageHead.d.ts.map +1 -0
- package/dist/shared/pageHead.js +28 -0
- package/dist/shared/pageHead.js.map +1 -0
- package/dist/shared/pageMeta.d.ts +60 -0
- package/dist/shared/pageMeta.d.ts.map +1 -0
- package/dist/shared/pageMeta.js +72 -0
- package/dist/shared/pageMeta.js.map +1 -0
- package/dist/shared/rewrites.d.ts +5 -0
- package/dist/shared/rewrites.d.ts.map +1 -0
- package/dist/shared/rewrites.js +23 -0
- package/dist/shared/rewrites.js.map +1 -0
- package/dist/shared/route.d.ts +5 -0
- package/dist/shared/route.d.ts.map +1 -0
- package/dist/shared/route.js +15 -0
- package/dist/shared/route.js.map +1 -0
- package/dist/shared/search.d.ts +39 -0
- package/dist/shared/search.d.ts.map +1 -0
- package/dist/shared/search.js +63 -0
- package/dist/shared/search.js.map +1 -0
- package/dist/shared/sidebar.d.ts +18 -0
- package/dist/shared/sidebar.d.ts.map +1 -0
- package/dist/shared/sidebar.js +51 -0
- package/dist/shared/sidebar.js.map +1 -0
- package/dist/shared/slug.d.ts +4 -0
- package/dist/shared/slug.d.ts.map +1 -0
- package/dist/shared/slug.js +21 -0
- package/dist/shared/slug.js.map +1 -0
- package/dist/shared/socialIcons.d.ts +13 -0
- package/dist/shared/socialIcons.d.ts.map +1 -0
- package/dist/shared/socialIcons.js +27 -0
- package/dist/shared/socialIcons.js.map +1 -0
- package/dist/shared/tags.d.ts +6 -0
- package/dist/shared/tags.d.ts.map +1 -0
- package/dist/shared/tags.js +39 -0
- package/dist/shared/tags.js.map +1 -0
- package/dist/shared/theme.d.ts +8 -0
- package/dist/shared/theme.d.ts.map +1 -0
- package/dist/shared/theme.js +25 -0
- package/dist/shared/theme.js.map +1 -0
- package/dist/shared/themeLabels.d.ts +18 -0
- package/dist/shared/themeLabels.d.ts.map +1 -0
- package/dist/shared/themeLabels.js +51 -0
- package/dist/shared/themeLabels.js.map +1 -0
- package/dist/shared/url.d.ts +7 -0
- package/dist/shared/url.d.ts.map +1 -0
- package/dist/shared/url.js +10 -0
- package/dist/shared/url.js.map +1 -0
- package/package.json +108 -0
- package/src/client/app.tsx +194 -0
- package/src/client/entry-client.tsx +27 -0
- package/src/client/entry-ssr.tsx +77 -0
- package/src/client/index.ts +2 -0
- package/src/client/loadPage.ts +68 -0
- package/src/client/prefetchLinks.ts +60 -0
- package/src/client/theme-default/AlgoliaSearch.tsx +89 -0
- package/src/client/theme-default/Features.tsx +75 -0
- package/src/client/theme-default/Hero.tsx +60 -0
- package/src/client/theme-default/Layout.tsx +525 -0
- package/src/client/theme-default/Logo.tsx +104 -0
- package/src/client/theme-default/NavLinks.tsx +65 -0
- package/src/client/theme-default/SidebarNav.tsx +103 -0
- package/src/client/theme-default/SocialLinks.tsx +41 -0
- package/src/client/theme-default/ThemeToggle.tsx +79 -0
- package/src/client/theme-default/index.ts +1 -0
- package/src/client/theme-default/styles.css +1450 -0
- package/src/client/types.ts +37 -0
- package/src/client/usePageHead.ts +212 -0
- package/src/client/useSiteSearch.ts +57 -0
- package/src/client/virtual.d.ts +103 -0
- package/src/shared/contentChunk.ts +14 -0
- package/src/shared/contentSchema.ts +85 -0
- package/src/shared/deadLinks.ts +33 -0
- package/src/shared/escapeHtml.ts +11 -0
- package/src/shared/index.ts +83 -0
- package/src/shared/locale.ts +116 -0
- package/src/shared/pageChrome.ts +244 -0
- package/src/shared/pageHead.ts +26 -0
- package/src/shared/pageMeta.ts +136 -0
- package/src/shared/rewrites.ts +35 -0
- package/src/shared/route.ts +14 -0
- package/src/shared/search.ts +105 -0
- package/src/shared/sidebar.ts +67 -0
- package/src/shared/slug.ts +23 -0
- package/src/shared/socialIcons.ts +44 -0
- package/src/shared/tags.ts +36 -0
- package/src/shared/theme.ts +26 -0
- package/src/shared/themeLabels.ts +72 -0
- package/src/shared/url.ts +14 -0
- package/templates/default/.preactpress/config.ts +31 -0
- package/templates/default/README.md +45 -0
- package/templates/default/about.md +11 -0
- package/templates/default/guide/first-five-minutes.md +83 -0
- package/templates/default/index.html +18 -0
- package/templates/default/index.md +55 -0
- package/templates/default/package.json +15 -0
- package/templates/default/pnpm-lock.yaml +2917 -0
- package/templates/docs/.preactpress/config.ts +94 -0
- package/templates/docs/README.md +21 -0
- package/templates/docs/about.md +10 -0
- package/templates/docs/components/Counter.tsx +25 -0
- package/templates/docs/de/guide/getting-started.md +19 -0
- package/templates/docs/de/guide/what-is-preactpress.md +15 -0
- package/templates/docs/de/index.md +23 -0
- package/templates/docs/dist/404.html +29 -0
- package/templates/docs/dist/about/index.html +32 -0
- package/templates/docs/dist/assets/esm-DzlBxN5p.js +110 -0
- package/templates/docs/dist/assets/interactive-64o6YwrR.js +9 -0
- package/templates/docs/dist/assets/interactive-BedCloEw.js +9 -0
- package/templates/docs/dist/assets/main-BVLeh8GO.js +1 -0
- package/templates/docs/dist/assets/main-CreUBb3N.js +1 -0
- package/templates/docs/dist/assets/main-oodK-zZy.css +2 -0
- package/templates/docs/dist/de/guide/getting-started/index.html +36 -0
- package/templates/docs/dist/de/guide/what-is-preactpress/index.html +38 -0
- package/templates/docs/dist/de/index.html +29 -0
- package/templates/docs/dist/favicon-32.png +0 -0
- package/templates/docs/dist/favicon.png +0 -0
- package/templates/docs/dist/favicon.svg +28 -0
- package/templates/docs/dist/guide/advanced/index.html +53 -0
- package/templates/docs/dist/guide/commands/index.html +89 -0
- package/templates/docs/dist/guide/configuration/index.html +196 -0
- package/templates/docs/dist/guide/creating-pages/index.html +234 -0
- package/templates/docs/dist/guide/custom-themes/index.html +52 -0
- package/templates/docs/dist/guide/default-theme/index.html +53 -0
- package/templates/docs/dist/guide/deploy/index.html +195 -0
- package/templates/docs/dist/guide/first-five-minutes/index.html +99 -0
- package/templates/docs/dist/guide/getting-started/index.html +173 -0
- package/templates/docs/dist/guide/markdown-and-mdx/index.html +59 -0
- package/templates/docs/dist/guide/routing/index.html +192 -0
- package/templates/docs/dist/guide/what-is-preactpress/index.html +141 -0
- package/templates/docs/dist/index.html +30 -0
- package/templates/docs/dist/interactive/index.html +37 -0
- package/templates/docs/dist/markdown-examples/index.html +231 -0
- package/templates/docs/dist/preactpress-content/404.json +8 -0
- package/templates/docs/dist/preactpress-content/_index.json +50 -0
- package/templates/docs/dist/preactpress-content/about.json +15 -0
- package/templates/docs/dist/preactpress-content/de.json +45 -0
- package/templates/docs/dist/preactpress-content/de__guide__getting-started.json +26 -0
- package/templates/docs/dist/preactpress-content/de__guide__what-is-preactpress.json +21 -0
- package/templates/docs/dist/preactpress-content/guide__advanced.json +46 -0
- package/templates/docs/dist/preactpress-content/guide__commands.json +26 -0
- package/templates/docs/dist/preactpress-content/guide__configuration.json +51 -0
- package/templates/docs/dist/preactpress-content/guide__creating-pages.json +71 -0
- package/templates/docs/dist/preactpress-content/guide__custom-themes.json +15 -0
- package/templates/docs/dist/preactpress-content/guide__default-theme.json +36 -0
- package/templates/docs/dist/preactpress-content/guide__deploy.json +56 -0
- package/templates/docs/dist/preactpress-content/guide__first-five-minutes.json +36 -0
- package/templates/docs/dist/preactpress-content/guide__getting-started.json +51 -0
- package/templates/docs/dist/preactpress-content/guide__markdown-and-mdx.json +31 -0
- package/templates/docs/dist/preactpress-content/guide__routing.json +71 -0
- package/templates/docs/dist/preactpress-content/guide__what-is-preactpress.json +51 -0
- package/templates/docs/dist/preactpress-content/markdown-examples.json +71 -0
- package/templates/docs/dist/preactpress-content/tags__markdown.json +16 -0
- package/templates/docs/dist/preactpress-search.json +166 -0
- package/templates/docs/dist/preactpress-theme.js +1 -0
- package/templates/docs/dist/tags/markdown/index.html +32 -0
- package/templates/docs/guide/advanced.md +44 -0
- package/templates/docs/guide/commands.md +41 -0
- package/templates/docs/guide/configuration.md +130 -0
- package/templates/docs/guide/creating-pages.md +171 -0
- package/templates/docs/guide/custom-themes.md +39 -0
- package/templates/docs/guide/default-theme.md +41 -0
- package/templates/docs/guide/deploy.md +197 -0
- package/templates/docs/guide/first-five-minutes.md +82 -0
- package/templates/docs/guide/getting-started.md +146 -0
- package/templates/docs/guide/markdown-and-mdx.md +59 -0
- package/templates/docs/guide/routing.md +263 -0
- package/templates/docs/guide/what-is-preactpress.md +87 -0
- package/templates/docs/index.html +18 -0
- package/templates/docs/index.md +28 -0
- package/templates/docs/interactive.mdx +32 -0
- package/templates/docs/markdown-examples.md +72 -0
- package/templates/docs/package.json +15 -0
- package/templates/docs/partials/shared-note.md +3 -0
- package/templates/docs/parts/include-body.md +9 -0
- package/templates/docs/pnpm-lock.yaml +2917 -0
- package/templates/docs/snippets/greet.ts +3 -0
- package/templates/hono/.preactpress/config.ts +100 -0
- package/templates/hono/.preactpress/theme/CodeSnippet.tsx +41 -0
- package/templates/hono/.preactpress/theme/FeatureGrid.tsx +27 -0
- package/templates/hono/.preactpress/theme/Hero.tsx +45 -0
- package/templates/hono/.preactpress/theme/Layout.tsx +388 -0
- package/templates/hono/.preactpress/theme/Logo.tsx +26 -0
- package/templates/hono/.preactpress/theme/ThemeToggle.tsx +72 -0
- package/templates/hono/.preactpress/theme/hono.css +1058 -0
- package/templates/hono/README.md +41 -0
- package/templates/hono/about.md +10 -0
- package/templates/hono/components/Counter.tsx +25 -0
- package/templates/hono/de/about.md +10 -0
- package/templates/hono/de/guide/commands.md +44 -0
- package/templates/hono/de/guide/configuration.md +64 -0
- package/templates/hono/de/guide/deploy.md +197 -0
- package/templates/hono/de/guide/first-five-minutes.md +82 -0
- package/templates/hono/de/guide/getting-started.md +146 -0
- package/templates/hono/de/guide/routing.md +220 -0
- package/templates/hono/de/guide/seiten-erstellen.md +171 -0
- package/templates/hono/de/guide/what-is-preactpress.md +87 -0
- package/templates/hono/de/index.mdx +51 -0
- package/templates/hono/de/interactive.mdx +32 -0
- package/templates/hono/de/markdown-examples.md +142 -0
- package/templates/hono/de/parts/include-body.md +9 -0
- package/templates/hono/de/snippets/greet.ts +3 -0
- package/templates/hono/dist/404.html +29 -0
- package/templates/hono/dist/README/index.html +104 -0
- package/templates/hono/dist/about/index.html +32 -0
- package/templates/hono/dist/assets/Counter-CCEByS-J.js +1 -0
- package/templates/hono/dist/assets/Hero--o6WMNvm.js +2 -0
- package/templates/hono/dist/assets/de-D5r6Ye70.js +10 -0
- package/templates/hono/dist/assets/hono-BXWYYdyv.js +10 -0
- package/templates/hono/dist/assets/interactive-Bxo-WBpC.js +9 -0
- package/templates/hono/dist/assets/interactive-BznI4IQ3.js +9 -0
- package/templates/hono/dist/assets/main-Bqi-VFEk.js +2 -0
- package/templates/hono/dist/assets/main-DIIN7FO0.css +1 -0
- package/templates/hono/dist/de/about/index.html +32 -0
- package/templates/hono/dist/de/guide/commands/index.html +41 -0
- package/templates/hono/dist/de/guide/configuration/index.html +105 -0
- package/templates/hono/dist/de/guide/deploy/index.html +195 -0
- package/templates/hono/dist/de/guide/first-five-minutes/index.html +99 -0
- package/templates/hono/dist/de/guide/getting-started/index.html +173 -0
- package/templates/hono/dist/de/guide/routing/index.html +165 -0
- package/templates/hono/dist/de/guide/seiten-erstellen/index.html +234 -0
- package/templates/hono/dist/de/guide/what-is-preactpress/index.html +141 -0
- package/templates/hono/dist/de/index.html +30 -0
- package/templates/hono/dist/de/interactive/index.html +37 -0
- package/templates/hono/dist/de/markdown-examples/index.html +97 -0
- package/templates/hono/dist/de/parts/include-body/index.html +36 -0
- package/templates/hono/dist/de/tags/markdown/index.html +32 -0
- package/templates/hono/dist/favicon-32.png +0 -0
- package/templates/hono/dist/favicon.png +0 -0
- package/templates/hono/dist/favicon.svg +28 -0
- package/templates/hono/dist/guide/commands/index.html +41 -0
- package/templates/hono/dist/guide/configuration/index.html +158 -0
- package/templates/hono/dist/guide/creating-pages/index.html +234 -0
- package/templates/hono/dist/guide/deploy/index.html +195 -0
- package/templates/hono/dist/guide/first-five-minutes/index.html +99 -0
- package/templates/hono/dist/guide/getting-started/index.html +173 -0
- package/templates/hono/dist/guide/routing/index.html +165 -0
- package/templates/hono/dist/guide/what-is-preactpress/index.html +141 -0
- package/templates/hono/dist/index.html +30 -0
- package/templates/hono/dist/interactive/index.html +37 -0
- package/templates/hono/dist/markdown-examples/index.html +105 -0
- package/templates/hono/dist/partials/shared-note/index.html +30 -0
- package/templates/hono/dist/parts/include-body/index.html +36 -0
- package/templates/hono/dist/preactpress-content/404.json +8 -0
- package/templates/hono/dist/preactpress-content/README.json +26 -0
- package/templates/hono/dist/preactpress-content/about.json +15 -0
- package/templates/hono/dist/preactpress-content/de__about.json +15 -0
- package/templates/hono/dist/preactpress-content/de__guide__commands.json +36 -0
- package/templates/hono/dist/preactpress-content/de__guide__configuration.json +41 -0
- package/templates/hono/dist/preactpress-content/de__guide__deploy.json +56 -0
- package/templates/hono/dist/preactpress-content/de__guide__first-five-minutes.json +36 -0
- package/templates/hono/dist/preactpress-content/de__guide__getting-started.json +51 -0
- package/templates/hono/dist/preactpress-content/de__guide__routing.json +61 -0
- package/templates/hono/dist/preactpress-content/de__guide__seiten-erstellen.json +71 -0
- package/templates/hono/dist/preactpress-content/de__guide__what-is-preactpress.json +51 -0
- package/templates/hono/dist/preactpress-content/de__markdown-examples.json +131 -0
- package/templates/hono/dist/preactpress-content/de__parts__include-body.json +16 -0
- package/templates/hono/dist/preactpress-content/de__tags__markdown.json +16 -0
- package/templates/hono/dist/preactpress-content/guide__commands.json +36 -0
- package/templates/hono/dist/preactpress-content/guide__configuration.json +51 -0
- package/templates/hono/dist/preactpress-content/guide__creating-pages.json +71 -0
- package/templates/hono/dist/preactpress-content/guide__deploy.json +56 -0
- package/templates/hono/dist/preactpress-content/guide__first-five-minutes.json +36 -0
- package/templates/hono/dist/preactpress-content/guide__getting-started.json +51 -0
- package/templates/hono/dist/preactpress-content/guide__routing.json +61 -0
- package/templates/hono/dist/preactpress-content/guide__what-is-preactpress.json +51 -0
- package/templates/hono/dist/preactpress-content/markdown-examples.json +141 -0
- package/templates/hono/dist/preactpress-content/partials__shared-note.json +10 -0
- package/templates/hono/dist/preactpress-content/parts__include-body.json +16 -0
- package/templates/hono/dist/preactpress-content/tags__markdown.json +16 -0
- package/templates/hono/dist/preactpress-search.json +242 -0
- package/templates/hono/dist/preactpress-theme.js +1 -0
- package/templates/hono/dist/tags/markdown/index.html +32 -0
- package/templates/hono/guide/commands.md +44 -0
- package/templates/hono/guide/configuration.md +177 -0
- package/templates/hono/guide/creating-pages.md +171 -0
- package/templates/hono/guide/deploy.md +197 -0
- package/templates/hono/guide/first-five-minutes.md +82 -0
- package/templates/hono/guide/getting-started.md +146 -0
- package/templates/hono/guide/routing.md +263 -0
- package/templates/hono/guide/what-is-preactpress.md +87 -0
- package/templates/hono/index.html +18 -0
- package/templates/hono/index.mdx +51 -0
- package/templates/hono/interactive.mdx +32 -0
- package/templates/hono/markdown-examples.md +160 -0
- package/templates/hono/package.json +15 -0
- package/templates/hono/partials/shared-note.md +3 -0
- package/templates/hono/parts/include-body.md +9 -0
- package/templates/hono/pnpm-lock.yaml +2917 -0
- package/templates/hono/snippets/greet.ts +3 -0
- package/templates/magazine/.preactpress/config.ts +36 -0
- package/templates/magazine/.preactpress/theme/Layout.tsx +319 -0
- package/templates/magazine/.preactpress/theme/TeaserGrid.tsx +39 -0
- package/templates/magazine/.preactpress/theme/ThemeToggle.tsx +73 -0
- package/templates/magazine/.preactpress/theme/magazine.css +587 -0
- package/templates/magazine/article-markets.md +24 -0
- package/templates/magazine/article-tech.mdx +35 -0
- package/templates/magazine/index.data.ts +19 -0
- package/templates/magazine/index.html +14 -0
- package/templates/magazine/index.mdx +13 -0
- package/templates/magazine/package.json +15 -0
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8">
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
|
+
<title>Not found | Hono Starter</title>
|
|
7
|
+
<script src="/preactpress-theme.js"></script>
|
|
8
|
+
<meta name="description" content="Fast, lightweight docs and landing pages built on Web Standards.">
|
|
9
|
+
<meta property="og:title" content="Not found | Hono Starter">
|
|
10
|
+
<meta property="og:description" content="Fast, lightweight docs and landing pages built on Web Standards.">
|
|
11
|
+
<meta property="og:type" content="website">
|
|
12
|
+
<meta property="og:url" content="/404/">
|
|
13
|
+
<meta name="twitter:card" content="summary">
|
|
14
|
+
<meta name="twitter:title" content="Not found | Hono Starter">
|
|
15
|
+
<meta name="twitter:description" content="Fast, lightweight docs and landing pages built on Web Standards.">
|
|
16
|
+
<link rel="canonical" href="/404/">
|
|
17
|
+
<script type="application/ld+json">{"@context":"https://schema.org","@type":"WebPage","headline":"Not found | Hono Starter","name":"Not found | Hono Starter","description":"Fast, lightweight docs and landing pages built on Web Standards.","url":"/404/"}</script>
|
|
18
|
+
<link rel="icon" href="/favicon.svg" type="image/svg+xml">
|
|
19
|
+
<link rel="icon" href="/favicon-32.png" type="image/png" sizes="32x32">
|
|
20
|
+
<link rel="icon" href="/favicon.png" type="image/png" sizes="any">
|
|
21
|
+
<link rel="apple-touch-icon" href="/favicon.png">
|
|
22
|
+
<link rel="stylesheet" crossorigin href="/assets/main-DIIN7FO0.css">
|
|
23
|
+
</head>
|
|
24
|
+
<body>
|
|
25
|
+
<template id="__PREACTPRESS_PAGE_DATA__">{"kind":"markdown","html":"","title":"Not found","description":"Fast, lightweight docs and landing pages built on Web Standards.","meta":{},"headings":[]}</template>
|
|
26
|
+
<div id="app"><div class="hn-site"><a class="hn-skip" href="#content">Skip to content</a><header class="hn-header"><div class="hn-header-inner"><a class="hn-brand" href="/" aria-label="Hono Starter"><span class="hn-logo" aria-label="Hono Starter"><svg aria-hidden="true" viewBox="0 0 36 36" width="36" height="36"><rect width="36" height="36" rx="11" fill="currentColor" opacity="0.12"></rect><path d="M19.8 5.5c.8 4-2.8 5.9-4.7 8.2-1.8 2.1-2.5 4.9-.3 7 0-2.8 1.7-4.6 4.2-6.7 3.2 3 5.3 5.8 5.3 9.2 0 4.4-3.3 7.3-7.6 7.3-4.8 0-8.3-3.6-8.3-8.4 0-6.1 6.3-9.2 11.4-16.6Z" fill="currentColor"></path><path d="M21.7 25.7c0 2.2-1.7 3.8-3.9 3.8s-4-1.6-4-3.8c0-1.7 1-3.1 3.4-5.2.1 1.7 1.4 2.6 2.4 3.4.8.6 2.1 1 2.1 1.8Z" fill="currentColor" opacity="0.38"></path></svg><span>Hono Starter</span></span></a><div class="hn-header-actions"><nav class="hn-nav" aria-label="Main navigation"><a class href="/guide/what-is-preactpress">Docs</a><a class href="/markdown-examples">Examples</a><a class href="/about">About</a></nav><div class="hn-social" aria-label="Social links"><a href="https://github.com/your-org/your-project" aria-label="GitHub"><span><svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>GitHub</title><path fill="currentColor" d="M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.404 1.02.005 2.04.137 3 .404 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12"/></svg></span></a></div><details class="hn-locale-switcher"><summary>English</summary><div class="hn-locale-menu"><a href="/" aria-current="page" class="active">English</a><a href="/de" class>Deutsch</a></div></details><button type="button" class="hn-theme-toggle" aria-label="Toggle theme"><span class="hn-theme-toggle-moon" aria-hidden="true"><svg viewBox="0 0 24 24" width="18" height="18" fill="none" stroke="currentColor"><path d="M21 14.8A8.5 8.5 0 0 1 9.2 3a7 7 0 1 0 11.8 11.8Z" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.7"></path></svg></span><span class="hn-theme-toggle-sun" aria-hidden="true"><svg viewBox="0 0 24 24" width="18" height="18" fill="none" stroke="currentColor"><circle cx="12" cy="12" r="3.5" stroke-width="1.7"></circle><path d="M12 2.5v2M12 19.5v2M4.6 4.6 6 6M18 18l1.4 1.4M2.5 12h2M19.5 12h2M4.6 19.4 6 18M18 6l1.4-1.4" stroke-linecap="round" stroke-width="1.7"></path></svg></span></button></div></div></header><div class="hn-doc-shell"><aside class="hn-sidebar" aria-label="Documentation navigation"><div class="hn-sidebar-panel"><label class="hn-search"><span>Search pages</span><input type="search" value placeholder="Filter documentation..."/></label><div class="hn-sidebar-group"><h2>Introduction</h2><ul><li><a class href="/">Welcome</a></li><li><a class href="/guide/what-is-preactpress">What is PreactPress?</a></li><li><a class href="/guide/getting-started">Getting Started</a></li><li><a class href="/guide/routing">Routing</a></li><li><a class href="/guide/deploy">Deploy</a></li><li><a class href="/guide/first-five-minutes">Your first 5 minutes</a></li><li><a class href="/guide/creating-pages">Creating pages</a></li><li><a class href="/guide/commands">Commands</a></li><li><a class href="/guide/configuration">Configuration</a></li></ul></div><div class="hn-sidebar-group"><h2>Reference</h2><ul><li><a class href="/markdown-examples">Markdown examples</a></li><li><a class href="/interactive">Interactive MDX</a></li></ul></div></div></aside><main id="content" class="hn-doc-main"><article class="hn-doc"><h1 class="hn-doc-title">Not found</h1><p class="hn-doc-lead">Fast, lightweight docs and landing pages built on Web Standards.</p><div class="hn-doc-content"></div><footer class="hn-doc-meta"></footer></article></main></div><footer class="hn-footer">Built with PreactPress.</footer></div></div>
|
|
27
|
+
<script type="module" crossorigin src="/assets/main-Bqi-VFEk.js"></script>
|
|
28
|
+
</body>
|
|
29
|
+
</html>
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8">
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
|
+
<title>Hono Starter</title>
|
|
7
|
+
<script src="/preactpress-theme.js"></script>
|
|
8
|
+
<meta name="description" content="Fast, lightweight docs and landing pages built on Web Standards.">
|
|
9
|
+
<meta property="og:title" content="Hono Starter">
|
|
10
|
+
<meta property="og:description" content="Fast, lightweight docs and landing pages built on Web Standards.">
|
|
11
|
+
<meta property="og:type" content="website">
|
|
12
|
+
<meta property="og:url" content="/README/">
|
|
13
|
+
<meta name="twitter:card" content="summary">
|
|
14
|
+
<meta name="twitter:title" content="Hono Starter">
|
|
15
|
+
<meta name="twitter:description" content="Fast, lightweight docs and landing pages built on Web Standards.">
|
|
16
|
+
<link rel="canonical" href="/README/">
|
|
17
|
+
<script type="application/ld+json">{"@context":"https://schema.org","@type":"WebPage","headline":"Hono Starter","name":"Hono Starter","description":"Fast, lightweight docs and landing pages built on Web Standards.","url":"/README/","dateModified":"2026-06-05T07:27:55.507Z"}</script>
|
|
18
|
+
<link rel="icon" href="/favicon.svg" type="image/svg+xml">
|
|
19
|
+
<link rel="icon" href="/favicon-32.png" type="image/png" sizes="32x32">
|
|
20
|
+
<link rel="icon" href="/favicon.png" type="image/png" sizes="any">
|
|
21
|
+
<link rel="apple-touch-icon" href="/favicon.png">
|
|
22
|
+
<link rel="stylesheet" crossorigin href="/assets/main-DIIN7FO0.css">
|
|
23
|
+
</head>
|
|
24
|
+
<body>
|
|
25
|
+
<template id="__PREACTPRESS_PAGE_DATA__">{"kind":"markdown","meta":{},"html":"\u003ch1 id=\"preactpress-hono-style-starter-site\" class=\"pp-heading\">PreactPress Hono-style starter site\u003ca class=\"pp-heading-anchor\" href=\"#preactpress-hono-style-starter-site\" aria-label=\"Link to this section\">#\u003c/a>\u003c/h1>\n\u003cp>This folder was scaffolded with \u003ccode>preactpress init --template hono\u003c/code>.\u003c/p>\n\u003cp>It combines a hono.dev-inspired landing page with a full documentation starter, MDX examples, and an English/German i18n demo.\u003c/p>\n\u003ch2 id=\"commands\" class=\"pp-heading\">Commands\u003ca class=\"pp-heading-anchor\" href=\"#commands\" aria-label=\"Link to this section\">#\u003c/a>\u003c/h2>\n\u003ctable>\n\u003cthead>\n\u003ctr>\n\u003cth>Script\u003c/th>\n\u003cth>What it does\u003c/th>\n\u003c/tr>\n\u003c/thead>\n\u003ctbody>\n\u003ctr>\n\u003ctd>\u003ccode>pnpm run dev\u003c/code>\u003c/td>\n\u003ctd>Start the dev server at \u003ca href=\"http://localhost:5173\" target=\"_blank\" rel=\"noopener noreferrer\">http://localhost:5173\u003c/a>\u003c/td>\n\u003c/tr>\n\u003ctr>\n\u003ctd>\u003ccode>pnpm run check\u003c/code>\u003c/td>\n\u003ctd>Validate config, routes, and links\u003c/td>\n\u003c/tr>\n\u003ctr>\n\u003ctd>\u003ccode>pnpm run build\u003c/code>\u003c/td>\n\u003ctd>Write static HTML to \u003ccode>dist/\u003c/code>\u003c/td>\n\u003c/tr>\n\u003ctr>\n\u003ctd>\u003ccode>pnpm run preview\u003c/code>\u003c/td>\n\u003ctd>Serve the production build locally\u003c/td>\n\u003c/tr>\n\u003c/tbody>\n\u003c/table>\n\u003ch2 id=\"where-to-edit\" class=\"pp-heading\">Where to edit\u003ca class=\"pp-heading-anchor\" href=\"#where-to-edit\" aria-label=\"Link to this section\">#\u003c/a>\u003c/h2>\n\u003ctable>\n\u003cthead>\n\u003ctr>\n\u003cth>Path\u003c/th>\n\u003cth>Purpose\u003c/th>\n\u003c/tr>\n\u003c/thead>\n\u003ctbody>\n\u003ctr>\n\u003ctd>\u003ccode>*.md\u003c/code>, \u003ccode>*.mdx\u003c/code>\u003c/td>\n\u003ctd>Page content — file path becomes the URL\u003c/td>\n\u003c/tr>\n\u003ctr>\n\u003ctd>\u003ccode>index.mdx\u003c/code>, \u003ccode>de/index.mdx\u003c/code>\u003c/td>\n\u003ctd>Landing pages with the hero and feature cards\u003c/td>\n\u003c/tr>\n\u003ctr>\n\u003ctd>\u003ccode>de/*.md\u003c/code>, \u003ccode>de/*.mdx\u003c/code>\u003c/td>\n\u003ctd>German pages for the bundled i18n demo\u003c/td>\n\u003c/tr>\n\u003ctr>\n\u003ctd>\u003ccode>.preactpress/config.ts\u003c/code>\u003c/td>\n\u003ctd>Site title, nav, sidebar, locales, build options\u003c/td>\n\u003c/tr>\n\u003ctr>\n\u003ctd>\u003ccode>.preactpress/theme/\u003c/code>\u003c/td>\n\u003ctd>Custom Hono-style layout, components, and CSS\u003c/td>\n\u003c/tr>\n\u003ctr>\n\u003ctd>\u003ccode>components/\u003c/code>\u003c/td>\n\u003ctd>Preact components for MDX pages\u003c/td>\n\u003c/tr>\n\u003ctr>\n\u003ctd>\u003ccode>index.html\u003c/code>\u003c/td>\n\u003ctd>Vite entry (rarely edited)\u003c/td>\n\u003c/tr>\n\u003c/tbody>\n\u003c/table>\n\u003cp>Start with \u003ca href=\"/guide/first-five-minutes\">Your first 5 minutes\u003c/a> in the local site, or read the full PreactPress README in the npm package / repository.\u003c/p>\n\u003cp>This starter includes English pages at the root and German pages under \u003ccode>/de/\u003c/code>. Remove the \u003ccode>de/\u003c/code> folder and \u003ccode>locales\u003c/code> config if you want a single-language site.\u003c/p>\n\u003ch2 id=\"deploy\" class=\"pp-heading\">Deploy\u003ca class=\"pp-heading-anchor\" href=\"#deploy\" aria-label=\"Link to this section\">#\u003c/a>\u003c/h2>\n\u003cpre class=\"shiki shiki-themes github-light github-dark\" style=\"background-color:#fff;--shiki-dark-bg:#24292e;color:#24292e;--shiki-dark:#e1e4e8\" tabindex=\"0\">\u003ccode>\u003cspan class=\"line\">\u003cspan style=\"color:#6F42C1;--shiki-dark:#B392F0\">pnpm\u003c/span>\u003cspan style=\"color:#032F62;--shiki-dark:#9ECBFF\"> run\u003c/span>\u003cspan style=\"color:#032F62;--shiki-dark:#9ECBFF\"> check\u003c/span>\u003c/span>\n\u003cspan class=\"line\">\u003cspan style=\"color:#6F42C1;--shiki-dark:#B392F0\">pnpm\u003c/span>\u003cspan style=\"color:#032F62;--shiki-dark:#9ECBFF\"> run\u003c/span>\u003cspan style=\"color:#032F62;--shiki-dark:#9ECBFF\"> build\u003c/span>\u003c/span>\u003c/code>\u003c/pre>\u003cp>Upload \u003cstrong>only\u003c/strong> \u003ccode>dist/\u003c/code> to Netlify, Vercel, Cloudflare Pages, GitHub Pages, or any static host. No Node server is required in production.\u003c/p>\n\u003cp>Before the first production build, set \u003ccode>site.url\u003c/code> (and \u003ccode>site.base\u003c/code> for subpath hosting) in \u003ccode>.preactpress/config.ts\u003c/code>.\u003c/p>\n","tags":[],"pageType":"website","headings":[{"id":"commands","text":"Commands","level":2},{"id":"where-to-edit","text":"Where to edit","level":2},{"id":"deploy","text":"Deploy","level":2}],"relativePath":"README.md","lastUpdated":"2026-06-05T07:27:55.507Z"}</template>
|
|
26
|
+
<div id="app"><div class="hn-site"><a class="hn-skip" href="#content">Skip to content</a><header class="hn-header"><div class="hn-header-inner"><a class="hn-brand" href="/" aria-label="Hono Starter"><span class="hn-logo" aria-label="Hono Starter"><svg aria-hidden="true" viewBox="0 0 36 36" width="36" height="36"><rect width="36" height="36" rx="11" fill="currentColor" opacity="0.12"></rect><path d="M19.8 5.5c.8 4-2.8 5.9-4.7 8.2-1.8 2.1-2.5 4.9-.3 7 0-2.8 1.7-4.6 4.2-6.7 3.2 3 5.3 5.8 5.3 9.2 0 4.4-3.3 7.3-7.6 7.3-4.8 0-8.3-3.6-8.3-8.4 0-6.1 6.3-9.2 11.4-16.6Z" fill="currentColor"></path><path d="M21.7 25.7c0 2.2-1.7 3.8-3.9 3.8s-4-1.6-4-3.8c0-1.7 1-3.1 3.4-5.2.1 1.7 1.4 2.6 2.4 3.4.8.6 2.1 1 2.1 1.8Z" fill="currentColor" opacity="0.38"></path></svg><span>Hono Starter</span></span></a><div class="hn-header-actions"><nav class="hn-nav" aria-label="Main navigation"><a class href="/guide/what-is-preactpress">Docs</a><a class href="/markdown-examples">Examples</a><a class href="/about">About</a></nav><div class="hn-social" aria-label="Social links"><a href="https://github.com/your-org/your-project" aria-label="GitHub"><span><svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>GitHub</title><path fill="currentColor" d="M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.404 1.02.005 2.04.137 3 .404 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12"/></svg></span></a></div><details class="hn-locale-switcher"><summary>English</summary><div class="hn-locale-menu"><a href="/README" aria-current="page" class="active">English</a><a href="/de" class>Deutsch</a></div></details><button type="button" class="hn-theme-toggle" aria-label="Toggle theme"><span class="hn-theme-toggle-moon" aria-hidden="true"><svg viewBox="0 0 24 24" width="18" height="18" fill="none" stroke="currentColor"><path d="M21 14.8A8.5 8.5 0 0 1 9.2 3a7 7 0 1 0 11.8 11.8Z" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.7"></path></svg></span><span class="hn-theme-toggle-sun" aria-hidden="true"><svg viewBox="0 0 24 24" width="18" height="18" fill="none" stroke="currentColor"><circle cx="12" cy="12" r="3.5" stroke-width="1.7"></circle><path d="M12 2.5v2M12 19.5v2M4.6 4.6 6 6M18 18l1.4 1.4M2.5 12h2M19.5 12h2M4.6 19.4 6 18M18 6l1.4-1.4" stroke-linecap="round" stroke-width="1.7"></path></svg></span></button></div></div></header><div class="hn-doc-shell"><aside class="hn-sidebar" aria-label="Documentation navigation"><div class="hn-sidebar-panel"><label class="hn-search"><span>Search pages</span><input type="search" value placeholder="Filter documentation..."/></label><div class="hn-sidebar-group"><h2>Introduction</h2><ul><li><a class href="/">Welcome</a></li><li><a class href="/guide/what-is-preactpress">What is PreactPress?</a></li><li><a class href="/guide/getting-started">Getting Started</a></li><li><a class href="/guide/routing">Routing</a></li><li><a class href="/guide/deploy">Deploy</a></li><li><a class href="/guide/first-five-minutes">Your first 5 minutes</a></li><li><a class href="/guide/creating-pages">Creating pages</a></li><li><a class href="/guide/commands">Commands</a></li><li><a class href="/guide/configuration">Configuration</a></li></ul></div><div class="hn-sidebar-group"><h2>Reference</h2><ul><li><a class href="/markdown-examples">Markdown examples</a></li><li><a class href="/interactive">Interactive MDX</a></li></ul></div></div></aside><main id="content" class="hn-doc-main"><article class="hn-doc"><h1 class="hn-doc-title">Hono Starter</h1><div class="hn-doc-content"><h1 id="preactpress-hono-style-starter-site" class="pp-heading">PreactPress Hono-style starter site<a class="pp-heading-anchor" href="#preactpress-hono-style-starter-site" aria-label="Link to this section">#</a></h1>
|
|
27
|
+
<p>This folder was scaffolded with <code>preactpress init --template hono</code>.</p>
|
|
28
|
+
<p>It combines a hono.dev-inspired landing page with a full documentation starter, MDX examples, and an English/German i18n demo.</p>
|
|
29
|
+
<h2 id="commands" class="pp-heading">Commands<a class="pp-heading-anchor" href="#commands" aria-label="Link to this section">#</a></h2>
|
|
30
|
+
<table>
|
|
31
|
+
<thead>
|
|
32
|
+
<tr>
|
|
33
|
+
<th>Script</th>
|
|
34
|
+
<th>What it does</th>
|
|
35
|
+
</tr>
|
|
36
|
+
</thead>
|
|
37
|
+
<tbody>
|
|
38
|
+
<tr>
|
|
39
|
+
<td><code>pnpm run dev</code></td>
|
|
40
|
+
<td>Start the dev server at <a href="http://localhost:5173" target="_blank" rel="noopener noreferrer">http://localhost:5173</a></td>
|
|
41
|
+
</tr>
|
|
42
|
+
<tr>
|
|
43
|
+
<td><code>pnpm run check</code></td>
|
|
44
|
+
<td>Validate config, routes, and links</td>
|
|
45
|
+
</tr>
|
|
46
|
+
<tr>
|
|
47
|
+
<td><code>pnpm run build</code></td>
|
|
48
|
+
<td>Write static HTML to <code>dist/</code></td>
|
|
49
|
+
</tr>
|
|
50
|
+
<tr>
|
|
51
|
+
<td><code>pnpm run preview</code></td>
|
|
52
|
+
<td>Serve the production build locally</td>
|
|
53
|
+
</tr>
|
|
54
|
+
</tbody>
|
|
55
|
+
</table>
|
|
56
|
+
<h2 id="where-to-edit" class="pp-heading">Where to edit<a class="pp-heading-anchor" href="#where-to-edit" aria-label="Link to this section">#</a></h2>
|
|
57
|
+
<table>
|
|
58
|
+
<thead>
|
|
59
|
+
<tr>
|
|
60
|
+
<th>Path</th>
|
|
61
|
+
<th>Purpose</th>
|
|
62
|
+
</tr>
|
|
63
|
+
</thead>
|
|
64
|
+
<tbody>
|
|
65
|
+
<tr>
|
|
66
|
+
<td><code>*.md</code>, <code>*.mdx</code></td>
|
|
67
|
+
<td>Page content — file path becomes the URL</td>
|
|
68
|
+
</tr>
|
|
69
|
+
<tr>
|
|
70
|
+
<td><code>index.mdx</code>, <code>de/index.mdx</code></td>
|
|
71
|
+
<td>Landing pages with the hero and feature cards</td>
|
|
72
|
+
</tr>
|
|
73
|
+
<tr>
|
|
74
|
+
<td><code>de/*.md</code>, <code>de/*.mdx</code></td>
|
|
75
|
+
<td>German pages for the bundled i18n demo</td>
|
|
76
|
+
</tr>
|
|
77
|
+
<tr>
|
|
78
|
+
<td><code>.preactpress/config.ts</code></td>
|
|
79
|
+
<td>Site title, nav, sidebar, locales, build options</td>
|
|
80
|
+
</tr>
|
|
81
|
+
<tr>
|
|
82
|
+
<td><code>.preactpress/theme/</code></td>
|
|
83
|
+
<td>Custom Hono-style layout, components, and CSS</td>
|
|
84
|
+
</tr>
|
|
85
|
+
<tr>
|
|
86
|
+
<td><code>components/</code></td>
|
|
87
|
+
<td>Preact components for MDX pages</td>
|
|
88
|
+
</tr>
|
|
89
|
+
<tr>
|
|
90
|
+
<td><code>index.html</code></td>
|
|
91
|
+
<td>Vite entry (rarely edited)</td>
|
|
92
|
+
</tr>
|
|
93
|
+
</tbody>
|
|
94
|
+
</table>
|
|
95
|
+
<p>Start with <a href="/guide/first-five-minutes">Your first 5 minutes</a> in the local site, or read the full PreactPress README in the npm package / repository.</p>
|
|
96
|
+
<p>This starter includes English pages at the root and German pages under <code>/de/</code>. Remove the <code>de/</code> folder and <code>locales</code> config if you want a single-language site.</p>
|
|
97
|
+
<h2 id="deploy" class="pp-heading">Deploy<a class="pp-heading-anchor" href="#deploy" aria-label="Link to this section">#</a></h2>
|
|
98
|
+
<pre class="shiki shiki-themes github-light github-dark" style="background-color:#fff;--shiki-dark-bg:#24292e;color:#24292e;--shiki-dark:#e1e4e8" tabindex="0"><code><span class="line"><span style="color:#6F42C1;--shiki-dark:#B392F0">pnpm</span><span style="color:#032F62;--shiki-dark:#9ECBFF"> run</span><span style="color:#032F62;--shiki-dark:#9ECBFF"> check</span></span>
|
|
99
|
+
<span class="line"><span style="color:#6F42C1;--shiki-dark:#B392F0">pnpm</span><span style="color:#032F62;--shiki-dark:#9ECBFF"> run</span><span style="color:#032F62;--shiki-dark:#9ECBFF"> build</span></span></code></pre><p>Upload <strong>only</strong> <code>dist/</code> to Netlify, Vercel, Cloudflare Pages, GitHub Pages, or any static host. No Node server is required in production.</p>
|
|
100
|
+
<p>Before the first production build, set <code>site.url</code> (and <code>site.base</code> for subpath hosting) in <code>.preactpress/config.ts</code>.</p>
|
|
101
|
+
</div><footer class="hn-doc-meta"><span>Updated Jun 5, 2026</span></footer></article></main><aside class="hn-outline" aria-label="On this page"><div class="hn-outline-panel"><h2>On this page</h2><ul><li class="level-2"><a href="#commands">Commands</a></li><li class="level-2"><a href="#where-to-edit">Where to edit</a></li><li class="level-2"><a href="#deploy">Deploy</a></li></ul></div></aside></div><footer class="hn-footer">Built with PreactPress.</footer></div></div>
|
|
102
|
+
<script type="module" crossorigin src="/assets/main-Bqi-VFEk.js"></script>
|
|
103
|
+
</body>
|
|
104
|
+
</html>
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8">
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
|
+
<title>About | Hono Starter</title>
|
|
7
|
+
<script src="/preactpress-theme.js"></script>
|
|
8
|
+
<meta name="description" content="About this site">
|
|
9
|
+
<meta property="og:title" content="About | Hono Starter">
|
|
10
|
+
<meta property="og:description" content="About this site">
|
|
11
|
+
<meta property="og:type" content="website">
|
|
12
|
+
<meta property="og:url" content="/about/">
|
|
13
|
+
<meta name="twitter:card" content="summary">
|
|
14
|
+
<meta name="twitter:title" content="About | Hono Starter">
|
|
15
|
+
<meta name="twitter:description" content="About this site">
|
|
16
|
+
<link rel="canonical" href="/about/">
|
|
17
|
+
<script type="application/ld+json">{"@context":"https://schema.org","@type":"WebPage","headline":"About | Hono Starter","name":"About | Hono Starter","description":"About this site","url":"/about/","dateModified":"2026-06-04T07:28:10.784Z"}</script>
|
|
18
|
+
<link rel="icon" href="/favicon.svg" type="image/svg+xml">
|
|
19
|
+
<link rel="icon" href="/favicon-32.png" type="image/png" sizes="32x32">
|
|
20
|
+
<link rel="icon" href="/favicon.png" type="image/png" sizes="any">
|
|
21
|
+
<link rel="apple-touch-icon" href="/favicon.png">
|
|
22
|
+
<link rel="stylesheet" crossorigin href="/assets/main-DIIN7FO0.css">
|
|
23
|
+
</head>
|
|
24
|
+
<body>
|
|
25
|
+
<template id="__PREACTPRESS_PAGE_DATA__">{"kind":"markdown","meta":{"title":"About","description":"About this site"},"html":"\u003ch1 id=\"about-us\" class=\"pp-heading\">About us\u003ca class=\"pp-heading-anchor\" href=\"#about-us\" aria-label=\"Link to this section\">#\u003c/a>\u003c/h1>\n\u003cp>Your content here.\u003c/p>\n\u003cp>This page was added as part of the \u003ca href=\"/guide/first-five-minutes\">Your first 5 minutes\u003c/a> tutorial. Replace this text with your own copy — team bio, project mission, contact details, or anything else that belongs on an About page.\u003c/p>\n","title":"About","description":"About this site","tags":[],"pageType":"website","headings":[],"relativePath":"about.md","lastUpdated":"2026-06-04T07:28:10.784Z"}</template>
|
|
26
|
+
<div id="app"><div class="hn-site"><a class="hn-skip" href="#content">Skip to content</a><header class="hn-header"><div class="hn-header-inner"><a class="hn-brand" href="/" aria-label="Hono Starter"><span class="hn-logo" aria-label="Hono Starter"><svg aria-hidden="true" viewBox="0 0 36 36" width="36" height="36"><rect width="36" height="36" rx="11" fill="currentColor" opacity="0.12"></rect><path d="M19.8 5.5c.8 4-2.8 5.9-4.7 8.2-1.8 2.1-2.5 4.9-.3 7 0-2.8 1.7-4.6 4.2-6.7 3.2 3 5.3 5.8 5.3 9.2 0 4.4-3.3 7.3-7.6 7.3-4.8 0-8.3-3.6-8.3-8.4 0-6.1 6.3-9.2 11.4-16.6Z" fill="currentColor"></path><path d="M21.7 25.7c0 2.2-1.7 3.8-3.9 3.8s-4-1.6-4-3.8c0-1.7 1-3.1 3.4-5.2.1 1.7 1.4 2.6 2.4 3.4.8.6 2.1 1 2.1 1.8Z" fill="currentColor" opacity="0.38"></path></svg><span>Hono Starter</span></span></a><div class="hn-header-actions"><nav class="hn-nav" aria-label="Main navigation"><a class href="/guide/what-is-preactpress">Docs</a><a class href="/markdown-examples">Examples</a><a class="active" href="/about" aria-current="page">About</a></nav><div class="hn-social" aria-label="Social links"><a href="https://github.com/your-org/your-project" aria-label="GitHub"><span><svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>GitHub</title><path fill="currentColor" d="M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.404 1.02.005 2.04.137 3 .404 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12"/></svg></span></a></div><details class="hn-locale-switcher"><summary>English</summary><div class="hn-locale-menu"><a href="/about" aria-current="page" class="active">English</a><a href="/de/about" class>Deutsch</a></div></details><button type="button" class="hn-theme-toggle" aria-label="Toggle theme"><span class="hn-theme-toggle-moon" aria-hidden="true"><svg viewBox="0 0 24 24" width="18" height="18" fill="none" stroke="currentColor"><path d="M21 14.8A8.5 8.5 0 0 1 9.2 3a7 7 0 1 0 11.8 11.8Z" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.7"></path></svg></span><span class="hn-theme-toggle-sun" aria-hidden="true"><svg viewBox="0 0 24 24" width="18" height="18" fill="none" stroke="currentColor"><circle cx="12" cy="12" r="3.5" stroke-width="1.7"></circle><path d="M12 2.5v2M12 19.5v2M4.6 4.6 6 6M18 18l1.4 1.4M2.5 12h2M19.5 12h2M4.6 19.4 6 18M18 6l1.4-1.4" stroke-linecap="round" stroke-width="1.7"></path></svg></span></button></div></div></header><div class="hn-doc-shell"><aside class="hn-sidebar" aria-label="Documentation navigation"><div class="hn-sidebar-panel"><label class="hn-search"><span>Search pages</span><input type="search" value placeholder="Filter documentation..."/></label><div class="hn-sidebar-group"><h2>Introduction</h2><ul><li><a class href="/">Welcome</a></li><li><a class href="/guide/what-is-preactpress">What is PreactPress?</a></li><li><a class href="/guide/getting-started">Getting Started</a></li><li><a class href="/guide/routing">Routing</a></li><li><a class href="/guide/deploy">Deploy</a></li><li><a class href="/guide/first-five-minutes">Your first 5 minutes</a></li><li><a class href="/guide/creating-pages">Creating pages</a></li><li><a class href="/guide/commands">Commands</a></li><li><a class href="/guide/configuration">Configuration</a></li></ul></div><div class="hn-sidebar-group"><h2>Reference</h2><ul><li><a class href="/markdown-examples">Markdown examples</a></li><li><a class href="/interactive">Interactive MDX</a></li></ul></div></div></aside><main id="content" class="hn-doc-main"><article class="hn-doc"><h1 class="hn-doc-title">About</h1><p class="hn-doc-lead">About this site</p><div class="hn-doc-content"><h1 id="about-us" class="pp-heading">About us<a class="pp-heading-anchor" href="#about-us" aria-label="Link to this section">#</a></h1>
|
|
27
|
+
<p>Your content here.</p>
|
|
28
|
+
<p>This page was added as part of the <a href="/guide/first-five-minutes">Your first 5 minutes</a> tutorial. Replace this text with your own copy — team bio, project mission, contact details, or anything else that belongs on an About page.</p>
|
|
29
|
+
</div><footer class="hn-doc-meta"><span>Updated Jun 4, 2026</span></footer></article></main></div><footer class="hn-footer">Built with PreactPress.</footer></div></div>
|
|
30
|
+
<script type="module" crossorigin src="/assets/main-Bqi-VFEk.js"></script>
|
|
31
|
+
</body>
|
|
32
|
+
</html>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{n as e,t}from"./main-Bqi-VFEk.js";function n({initial:n=0}){let[r,i]=e(n);return t(`div`,{style:{display:`inline-flex`,alignItems:`center`,gap:`0.5rem`},children:[t(`button`,{type:`button`,onClick:()=>i(e=>e-1),"aria-label":`Decrease count`,children:`−`}),t(`span`,{children:r}),t(`button`,{type:`button`,onClick:()=>i(e=>e+1),"aria-label":`Increase count`,children:`+`})]})}export{n as t};
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import{t as e}from"./main-Bqi-VFEk.js";var t=({features:t})=>e(`section`,{class:`hn-features`,"aria-label":`Highlights`,children:t.map(t=>e(`article`,{class:`hn-feature-card`,children:[e(`div`,{class:`hn-feature-icon`,"aria-hidden":`true`,children:t.icon}),e(`h2`,{children:t.title}),e(`p`,{children:t.details})]},t.title))});function n(e){let t=e.trim();return t?t.startsWith(`import `)||t.startsWith(`export `)||t.startsWith(`const `)||t.startsWith(`return `)?`keyword`:t.includes(`'.`)||t.includes(`'`)||t.includes(`"`)?`string`:`plain`:`empty`}var r=({code:t})=>e(`div`,{class:`hn-code-card`,"aria-label":`Example code`,children:[e(`div`,{class:`hn-code-topbar`,"aria-hidden":`true`,children:[e(`span`,{}),e(`span`,{}),e(`span`,{})]}),e(`pre`,{children:e(`code`,{children:t.split(`
|
|
2
|
+
`).map((t,r)=>e(`span`,{class:`hn-code-line hn-code-${n(t)}`,children:t||` `},`${r}:${t}`))})})]}),i=({eyebrow:t,title:n,subtitle:i,actions:a=[],code:o})=>e(`section`,{class:`hn-hero`,"aria-labelledby":`hero-title`,children:[e(`div`,{class:`hn-hero-glow`,"aria-hidden":`true`}),e(`div`,{class:`hn-hero-copy`,children:[t?e(`p`,{class:`hn-hero-eyebrow`,children:t}):null,e(`h1`,{id:`hero-title`,children:n}),e(`p`,{class:`hn-hero-subtitle`,children:i}),a.length>0?e(`div`,{class:`hn-hero-actions`,children:a.map(t=>e(`a`,{class:`hn-button hn-button-${t.theme??`alt`}`,href:t.link,children:t.text},`${t.text}:${t.link}`))}):null]}),e(`div`,{class:`hn-hero-code`,children:e(r,{code:o})})]});export{t as n,i as t};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import{r as e,t}from"./main-Bqi-VFEk.js";import{n,t as r}from"./Hero--o6WMNvm.js";function i(i){return t(e,{children:[t(r,{eyebrow:`Hono-inspirierter Starter`,title:`Schnell, schlank, auf Web-Standards gebaut.`,subtitle:`Nutze dieses Template für hochwertige Dokumentation, Beispiele und Produktseiten mit einem kompakten Preact-Theme.`,actions:[{text:`Loslegen`,link:`/de/guide/getting-started`,theme:`brand`},{text:`Auf GitHub ansehen`,link:`https://github.com/your-org/your-project`,theme:`alt`}],code:`import { App } from 'your-framework'
|
|
2
|
+
|
|
3
|
+
const app = new App()
|
|
4
|
+
|
|
5
|
+
app.get('/', (c) => {
|
|
6
|
+
return c.text('Hallo Web-Standards!')
|
|
7
|
+
})
|
|
8
|
+
|
|
9
|
+
export default app`}),`
|
|
10
|
+
`,t(n,{features:[{icon:`F`,title:`Ultraschnell & leichtgewichtig`,details:`Statisches HTML, wenig Client-Code und ein Theme, das deine Docs responsiv hält.`},{icon:`R`,title:`Für viele Runtimes gedacht`,details:`Schreibe portable Beispiele für Node, Bun, Deno, Edge Workers und statisches Hosting.`},{icon:`B`,title:`Batterien inklusive`,details:`Navigation, Sidebar-Suche, MDX, Tags, i18n und statische Builds sind direkt startklar.`},{icon:`D`,title:`Angenehme DX`,details:`Markdown-first Content, Vite-Geschwindigkeit und editierbare Preact-Komponenten für Custom Pages.`}]})]})}function a(e={}){let{wrapper:n}=e.components||{};return n?t(n,{...e,children:t(i,{...e})}):i(e)}export{a as default};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import{r as e,t}from"./main-Bqi-VFEk.js";import{n,t as r}from"./Hero--o6WMNvm.js";function i(i){return t(e,{children:[t(r,{eyebrow:`Hono-inspired starter`,title:`Fast, lightweight, built on Web Standards.`,subtitle:`Use this template for polished documentation, examples, and product pages with a compact Preact theme.`,actions:[{text:`Get Started`,link:`/guide/getting-started`,theme:`brand`},{text:`View on GitHub`,link:`https://github.com/your-org/your-project`,theme:`alt`}],code:`import { App } from 'your-framework'
|
|
2
|
+
|
|
3
|
+
const app = new App()
|
|
4
|
+
|
|
5
|
+
app.get('/', (c) => {
|
|
6
|
+
return c.text('Hello Web Standards!')
|
|
7
|
+
})
|
|
8
|
+
|
|
9
|
+
export default app`}),`
|
|
10
|
+
`,t(n,{features:[{icon:`F`,title:`Ultrafast & Lightweight`,details:`Static HTML output, small client code, and a theme that keeps your docs responsive.`},{icon:`R`,title:`Multi-runtime mindset`,details:`Write portable examples for Node, Bun, Deno, edge workers, and static hosting workflows.`},{icon:`B`,title:`Batteries included`,details:`Navigation, sidebar search, MDX, tags, i18n, and static builds are ready from day one.`},{icon:`D`,title:`Delightful DX`,details:`Markdown-first content, Vite dev speed, and editable Preact components for custom pages.`}]})]})}function a(e={}){let{wrapper:n}=e.components||{};return n?t(n,{...e,children:t(i,{...e})}):i(e)}export{a as default};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import{r as e,t}from"./main-Bqi-VFEk.js";import{t as n}from"./Counter-CCEByS-J.js";function r(r){let i={code:`code`,h2:`h2`,img:`img`,p:`p`,...r.components};return t(e,{children:[t(i.h2,{children:`Preact component`}),`
|
|
2
|
+
`,t(i.p,{children:`MDX pages can import local Preact components and render them inline.`}),`
|
|
3
|
+
`,t(n,{initial:3}),`
|
|
4
|
+
`,t(i.h2,{children:`Image`}),`
|
|
5
|
+
`,t(i.p,{children:[`Markdown images work like in `,t(i.code,{children:`.md`}),` pages:`]}),`
|
|
6
|
+
`,t(i.p,{children:t(i.img,{src:`https://picsum.photos/id/10/800/450`,alt:`Sample photo from Lorem Picsum`})}),`
|
|
7
|
+
`,t(i.h2,{children:`YouTube`}),`
|
|
8
|
+
`,t(i.p,{children:[`Embed with a normal JSX `,t(i.code,{children:`iframe`}),` (replace the video id with your own):`]}),`
|
|
9
|
+
`,t(`iframe`,{width:`560`,height:`315`,src:`https://www.youtube.com/embed/aqz-KE-bpKQ`,title:`YouTube video example`,frameBorder:`0`,allow:`accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share`,allowFullScreen:!0})]})}function i(e={}){let{wrapper:n}=e.components||{};return n?t(n,{...e,children:t(r,{...e})}):r(e)}export{i as default};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import{r as e,t}from"./main-Bqi-VFEk.js";import{t as n}from"./Counter-CCEByS-J.js";function r(r){let i={code:`code`,h2:`h2`,img:`img`,p:`p`,...r.components};return t(e,{children:[t(i.h2,{children:`Preact-Komponente`}),`
|
|
2
|
+
`,t(i.p,{children:`MDX-Seiten können lokale Preact-Komponenten importieren und direkt rendern.`}),`
|
|
3
|
+
`,t(n,{initial:3}),`
|
|
4
|
+
`,t(i.h2,{children:`Bild`}),`
|
|
5
|
+
`,t(i.p,{children:[`Markdown-Bilder funktionieren wie in `,t(i.code,{children:`.md`}),`-Seiten:`]}),`
|
|
6
|
+
`,t(i.p,{children:t(i.img,{src:`https://picsum.photos/id/10/800/450`,alt:`Beispielfoto von Lorem Picsum`})}),`
|
|
7
|
+
`,t(i.h2,{children:`YouTube`}),`
|
|
8
|
+
`,t(i.p,{children:[`Einbetten mit einem normalen JSX-`,t(i.code,{children:`iframe`}),` (ersetze die Video-ID durch deine eigene):`]}),`
|
|
9
|
+
`,t(`iframe`,{width:`560`,height:`315`,src:`https://www.youtube.com/embed/aqz-KE-bpKQ`,title:`YouTube-Video-Beispiel`,frameBorder:`0`,allow:`accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share`,allowFullScreen:!0})]})}function i(e={}){let{wrapper:n}=e.components||{};return n?t(n,{...e,children:t(r,{...e})}):r(e)}export{i as default};
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=["assets/de-D5r6Ye70.js","assets/Hero--o6WMNvm.js","assets/interactive-BznI4IQ3.js","assets/Counter-CCEByS-J.js","assets/hono-BXWYYdyv.js","assets/interactive-Bxo-WBpC.js"])))=>i.map(i=>d[i]);
|
|
2
|
+
var e,t,n,r,i,a,o,s,c,l,u,d,f,p,m={},h=[],g=/acit|ex(?:s|g|n|p|$)|rph|grid|ows|mnc|ntw|ine[ch]|zoo|^ord|itera/i,_=Array.isArray;function v(e,t){for(var n in t)e[n]=t[n];return e}function y(e){e&&e.parentNode&&e.parentNode.removeChild(e)}function b(t,n,r){var i,a,o,s={};for(o in n)o==`key`?i=n[o]:o==`ref`?a=n[o]:s[o]=n[o];if(arguments.length>2&&(s.children=arguments.length>3?e.call(arguments,2):r),typeof t==`function`&&t.defaultProps!=null)for(o in t.defaultProps)s[o]===void 0&&(s[o]=t.defaultProps[o]);return x(t,s,i,a,null)}function x(e,r,i,a,o){var s={type:e,props:r,key:i,ref:a,__k:null,__:null,__b:0,__e:null,__c:null,constructor:void 0,__v:o??++n,__i:-1,__u:0};return o==null&&t.vnode!=null&&t.vnode(s),s}function S(e){return e.children}function C(e,t){this.props=e,this.context=t}function w(e,t){if(t==null)return e.__?w(e.__,e.__i+1):null;for(var n;t<e.__k.length;t++)if((n=e.__k[t])!=null&&n.__e!=null)return n.__e;return typeof e.type==`function`?w(e):null}function T(e){if(e.__P&&e.__d){var n=e.__v,r=n.__e,i=[],a=[],o=v({},n);o.__v=n.__v+1,t.vnode&&t.vnode(o),re(e.__P,o,n,e.__n,e.__P.namespaceURI,32&n.__u?[r]:null,i,r??w(n),!!(32&n.__u),a),o.__v=n.__v,o.__.__k[o.__i]=o,ae(i,o,a),n.__e=n.__=null,o.__e!=r&&E(o)}}function E(e){if((e=e.__)!=null&&e.__c!=null)return e.__e=e.__c.base=null,e.__k.some(function(t){if(t!=null&&t.__e!=null)return e.__e=e.__c.base=t.__e}),E(e)}function D(e){(!e.__d&&(e.__d=!0)&&r.push(e)&&!O.__r++||i!=t.debounceRendering)&&((i=t.debounceRendering)||a)(O)}function O(){try{for(var e,t=1;r.length;)r.length>t&&r.sort(o),e=r.shift(),t=r.length,T(e)}finally{r.length=O.__r=0}}function ee(e,t,n,r,i,a,o,s,c,l,u){var d,f,p,g,_,v,y,b=r&&r.__k||h,x=t.length;for(c=te(n,t,b,c,x),d=0;d<x;d++)(p=n.__k[d])!=null&&(f=p.__i!=-1&&b[p.__i]||m,p.__i=d,v=re(e,p,f,i,a,o,s,c,l,u),g=p.__e,p.ref&&f.ref!=p.ref&&(f.ref&&ce(f.ref,null,p),u.push(p.ref,p.__c||g,p)),_==null&&g!=null&&(_=g),(y=!!(4&p.__u))||f.__k===p.__k?(c=k(p,c,e,y),y&&f.__e&&(f.__e=null)):typeof p.type==`function`&&v!==void 0?c=v:g&&(c=g.nextSibling),p.__u&=-7);return n.__e=_,c}function te(e,t,n,r,i){var a,o,s,c,l,u=n.length,d=u,f=0;for(e.__k=Array(i),a=0;a<i;a++)(o=t[a])!=null&&typeof o!=`boolean`&&typeof o!=`function`?(typeof o==`string`||typeof o==`number`||typeof o==`bigint`||o.constructor==String?o=e.__k[a]=x(null,o,null,null,null):_(o)?o=e.__k[a]=x(S,{children:o},null,null,null):o.constructor===void 0&&o.__b>0?o=e.__k[a]=x(o.type,o.props,o.key,o.ref?o.ref:null,o.__v):e.__k[a]=o,c=a+f,o.__=e,o.__b=e.__b+1,s=null,(l=o.__i=A(o,n,c,d))!=-1&&(d--,(s=n[l])&&(s.__u|=2)),s==null||s.__v==null?(l==-1&&(i>u?f--:i<u&&f++),typeof o.type!=`function`&&(o.__u|=4)):l!=c&&(l==c-1?f--:l==c+1?f++:(l>c?f--:f++,o.__u|=4))):e.__k[a]=null;if(d)for(a=0;a<u;a++)(s=n[a])!=null&&!(2&s.__u)&&(s.__e==r&&(r=w(s)),le(s,s));return r}function k(e,t,n,r){var i,a;if(typeof e.type==`function`){for(i=e.__k,a=0;i&&a<i.length;a++)i[a]&&(i[a].__=e,t=k(i[a],t,n,r));return t}e.__e!=t&&(r&&(t&&e.type&&!t.parentNode&&(t=w(e)),n.insertBefore(e.__e,t||null)),t=e.__e);do t&&=t.nextSibling;while(t!=null&&t.nodeType==8);return t}function A(e,t,n,r){var i,a,o,s=e.key,c=e.type,l=t[n],u=l!=null&&(2&l.__u)==0;if(l===null&&s==null||u&&s==l.key&&c==l.type)return n;if(r>+!!u){for(i=n-1,a=n+1;i>=0||a<t.length;)if((l=t[o=i>=0?i--:a++])!=null&&!(2&l.__u)&&s==l.key&&c==l.type)return o}return-1}function j(e,t,n){t[0]==`-`?e.setProperty(t,n??``):e[t]=n==null?``:typeof n!=`number`||g.test(t)?n:n+`px`}function M(e,t,n,r,i){var a,o;n:if(t==`style`)if(typeof n==`string`)e.style.cssText=n;else{if(typeof r==`string`&&(e.style.cssText=r=``),r)for(t in r)n&&t in n||j(e.style,t,``);if(n)for(t in n)r&&n[t]==r[t]||j(e.style,t,n[t])}else if(t[0]==`o`&&t[1]==`n`)a=t!=(t=t.replace(u,`$1`)),o=t.toLowerCase(),t=o in e||t==`onFocusOut`||t==`onFocusIn`?o.slice(2):t.slice(2),e.l||={},e.l[t+a]=n,n?r?n[l]=r[l]:(n[l]=d,e.addEventListener(t,a?p:f,a)):e.removeEventListener(t,a?p:f,a);else{if(i==`http://www.w3.org/2000/svg`)t=t.replace(/xlink(H|:h)/,`h`).replace(/sName$/,`s`);else if(t!=`width`&&t!=`height`&&t!=`href`&&t!=`list`&&t!=`form`&&t!=`tabIndex`&&t!=`download`&&t!=`rowSpan`&&t!=`colSpan`&&t!=`role`&&t!=`popover`&&t in e)try{e[t]=n??``;break n}catch{}typeof n==`function`||(n==null||!1===n&&t[4]!=`-`?e.removeAttribute(t):e.setAttribute(t,t==`popover`&&n==1?``:n))}}function ne(e){return function(n){if(this.l){var r=this.l[n.type+e];if(n[c]==null)n[c]=d++;else if(n[c]<r[l])return;return r(t.event?t.event(n):n)}}}function re(e,n,r,i,a,o,s,c,l,u){var d,f,p,m,g,b,x,w,T,E,D,O,te,k,A,j=n.type;if(n.constructor!==void 0)return null;128&r.__u&&(l=!!(32&r.__u),o=[c=n.__e=r.__e]),(d=t.__b)&&d(n);n:if(typeof j==`function`)try{if(w=n.props,T=j.prototype&&j.prototype.render,E=(d=j.contextType)&&i[d.__c],D=d?E?E.props.value:d.__:i,r.__c?x=(f=n.__c=r.__c).__=f.__E:(T?n.__c=f=new j(w,D):(n.__c=f=new C(w,D),f.constructor=j,f.render=ue),E&&E.sub(f),f.state||={},f.__n=i,p=f.__d=!0,f.__h=[],f._sb=[]),T&&f.__s==null&&(f.__s=f.state),T&&j.getDerivedStateFromProps!=null&&(f.__s==f.state&&(f.__s=v({},f.__s)),v(f.__s,j.getDerivedStateFromProps(w,f.__s))),m=f.props,g=f.state,f.__v=n,p)T&&j.getDerivedStateFromProps==null&&f.componentWillMount!=null&&f.componentWillMount(),T&&f.componentDidMount!=null&&f.__h.push(f.componentDidMount);else{if(T&&j.getDerivedStateFromProps==null&&w!==m&&f.componentWillReceiveProps!=null&&f.componentWillReceiveProps(w,D),n.__v==r.__v||!f.__e&&f.shouldComponentUpdate!=null&&!1===f.shouldComponentUpdate(w,f.__s,D)){n.__v!=r.__v&&(f.props=w,f.state=f.__s,f.__d=!1),n.__e=r.__e,n.__k=r.__k,n.__k.some(function(e){e&&(e.__=n)}),h.push.apply(f.__h,f._sb),f._sb=[],f.__h.length&&s.push(f);break n}f.componentWillUpdate!=null&&f.componentWillUpdate(w,f.__s,D),T&&f.componentDidUpdate!=null&&f.__h.push(function(){f.componentDidUpdate(m,g,b)})}if(f.context=D,f.props=w,f.__P=e,f.__e=!1,O=t.__r,te=0,T)f.state=f.__s,f.__d=!1,O&&O(n),d=f.render(f.props,f.state,f.context),h.push.apply(f.__h,f._sb),f._sb=[];else do f.__d=!1,O&&O(n),d=f.render(f.props,f.state,f.context),f.state=f.__s;while(f.__d&&++te<25);f.state=f.__s,f.getChildContext!=null&&(i=v(v({},i),f.getChildContext())),T&&!p&&f.getSnapshotBeforeUpdate!=null&&(b=f.getSnapshotBeforeUpdate(m,g)),k=d!=null&&d.type===S&&d.key==null?oe(d.props.children):d,c=ee(e,_(k)?k:[k],n,r,i,a,o,s,c,l,u),f.base=n.__e,n.__u&=-161,f.__h.length&&s.push(f),x&&(f.__E=f.__=null)}catch(e){if(n.__v=null,l||o!=null)if(e.then){for(n.__u|=l?160:128;c&&c.nodeType==8&&c.nextSibling;)c=c.nextSibling;o[o.indexOf(c)]=null,n.__e=c}else{for(A=o.length;A--;)y(o[A]);ie(n)}else n.__e=r.__e,n.__k=r.__k,e.then||ie(n);t.__e(e,n,r)}else o==null&&n.__v==r.__v?(n.__k=r.__k,n.__e=r.__e):c=n.__e=se(r.__e,n,r,i,a,o,s,l,u);return(d=t.diffed)&&d(n),128&n.__u?void 0:c}function ie(e){e&&(e.__c&&(e.__c.__e=!0),e.__k&&e.__k.some(ie))}function ae(e,n,r){for(var i=0;i<r.length;i++)ce(r[i],r[++i],r[++i]);t.__c&&t.__c(n,e),e.some(function(n){try{e=n.__h,n.__h=[],e.some(function(e){e.call(n)})}catch(e){t.__e(e,n.__v)}})}function oe(e){return typeof e!=`object`||!e||e.__b>0?e:_(e)?e.map(oe):v({},e)}function se(n,r,i,a,o,s,c,l,u){var d,f,p,h,g,v,b,x=i.props||m,S=r.props,C=r.type;if(C==`svg`?o=`http://www.w3.org/2000/svg`:C==`math`?o=`http://www.w3.org/1998/Math/MathML`:o||=`http://www.w3.org/1999/xhtml`,s!=null){for(d=0;d<s.length;d++)if((g=s[d])&&`setAttribute`in g==!!C&&(C?g.localName==C:g.nodeType==3)){n=g,s[d]=null;break}}if(n==null){if(C==null)return document.createTextNode(S);n=document.createElementNS(o,C,S.is&&S),l&&=(t.__m&&t.__m(r,s),!1),s=null}if(C==null)x===S||l&&n.data==S||(n.data=S);else{if(s&&=e.call(n.childNodes),!l&&s!=null)for(x={},d=0;d<n.attributes.length;d++)x[(g=n.attributes[d]).name]=g.value;for(d in x)g=x[d],d==`dangerouslySetInnerHTML`?p=g:d==`children`||d in S||d==`value`&&`defaultValue`in S||d==`checked`&&`defaultChecked`in S||M(n,d,null,g,o);for(d in S)g=S[d],d==`children`?h=g:d==`dangerouslySetInnerHTML`?f=g:d==`value`?v=g:d==`checked`?b=g:l&&typeof g!=`function`||x[d]===g||M(n,d,g,x[d],o);if(f)l||p&&(f.__html==p.__html||f.__html==n.innerHTML)||(n.innerHTML=f.__html),r.__k=[];else if(p&&(n.innerHTML=``),ee(r.type==`template`?n.content:n,_(h)?h:[h],r,i,a,C==`foreignObject`?`http://www.w3.org/1999/xhtml`:o,s,c,s?s[0]:i.__k&&w(i,0),l,u),s!=null)for(d=s.length;d--;)y(s[d]);l||(d=`value`,C==`progress`&&v==null?n.removeAttribute(`value`):v!=null&&(v!==n[d]||C==`progress`&&!v||C==`option`&&v!=x[d])&&M(n,d,v,x[d],o),d=`checked`,b!=null&&b!=n[d]&&M(n,d,b,x[d],o))}return n}function ce(e,n,r){try{if(typeof e==`function`){var i=typeof e.__u==`function`;i&&e.__u(),i&&n==null||(e.__u=e(n))}else e.current=n}catch(e){t.__e(e,r)}}function le(e,n,r){var i,a;if(t.unmount&&t.unmount(e),(i=e.ref)&&(i.current&&i.current!=e.__e||ce(i,null,n)),(i=e.__c)!=null){if(i.componentWillUnmount)try{i.componentWillUnmount()}catch(e){t.__e(e,n)}i.base=i.__P=null}if(i=e.__k)for(a=0;a<i.length;a++)i[a]&&le(i[a],n,r||typeof e.type!=`function`);r||y(e.__e),e.__c=e.__=e.__e=void 0}function ue(e,t,n){return this.constructor(e,n)}function de(n,r,i){var a,o,s,c;r==document&&(r=document.documentElement),t.__&&t.__(n,r),o=(a=typeof i==`function`)?null:i&&i.__k||r.__k,s=[],c=[],re(r,n=(!a&&i||r).__k=b(S,null,[n]),o||m,m,r.namespaceURI,!a&&i?[i]:o?null:r.firstChild?e.call(r.childNodes):null,s,!a&&i?i:o?o.__e:r.firstChild,a,c),ae(s,n,c)}function fe(e,t){de(e,t,fe)}e=h.slice,t={__e:function(e,t,n,r){for(var i,a,o;t=t.__;)if((i=t.__c)&&!i.__)try{if((a=i.constructor)&&a.getDerivedStateFromError!=null&&(i.setState(a.getDerivedStateFromError(e)),o=i.__d),i.componentDidCatch!=null&&(i.componentDidCatch(e,r||{}),o=i.__d),o)return i.__E=i}catch(t){e=t}throw e}},n=0,C.prototype.setState=function(e,t){var n=this.__s!=null&&this.__s!=this.state?this.__s:this.__s=v({},this.state);typeof e==`function`&&(e=e(v({},n),this.props)),e&&v(n,e),e!=null&&this.__v&&(t&&this._sb.push(t),D(this))},C.prototype.forceUpdate=function(e){this.__v&&(this.__e=!0,e&&this.__h.push(e),D(this))},C.prototype.render=S,r=[],a=typeof Promise==`function`?Promise.prototype.then.bind(Promise.resolve()):setTimeout,o=function(e,t){return e.__v.__b-t.__v.__b},O.__r=0,s=Math.random().toString(8),c=`__d`+s,l=`__a`+s,u=/(PointerCapture)$|Capture$/i,d=0,f=ne(!1),p=ne(!0);var N,P,pe,me,he=0,ge=[],F=t,_e=F.__b,ve=F.__r,ye=F.diffed,be=F.__c,xe=F.unmount,Se=F.__;function I(e,t){F.__h&&F.__h(P,e,he||t),he=0;var n=P.__H||={__:[],__h:[]};return e>=n.__.length&&n.__.push({}),n.__[e]}function L(e){return he=1,Ce(Ae,e)}function Ce(e,t,n){var r=I(N++,2);if(r.t=e,!r.__c&&(r.__=[n?n(t):Ae(void 0,t),function(e){var t=r.__N?r.__N[0]:r.__[0],n=r.t(t,e);t!==n&&(r.__N=[n,r.__[1]],r.__c.setState({}))}],r.__c=P,!P.__f)){var i=function(e,t,n){if(!r.__c.__H)return!0;var i=r.__c.__H.__.filter(function(e){return e.__c});if(i.every(function(e){return!e.__N}))return!a||a.call(this,e,t,n);var o=r.__c.props!==e;return i.some(function(e){if(e.__N){var t=e.__[0];e.__=e.__N,e.__N=void 0,t!==e.__[0]&&(o=!0)}}),a&&a.call(this,e,t,n)||o};P.__f=!0;var a=P.shouldComponentUpdate,o=P.componentWillUpdate;P.componentWillUpdate=function(e,t,n){if(this.__e){var r=a;a=void 0,i(e,t,n),a=r}o&&o.call(this,e,t,n)},P.shouldComponentUpdate=i}return r.__N||r.__}function R(e,t){var n=I(N++,3);!F.__s&&ke(n.__H,t)&&(n.__=e,n.u=t,P.__H.__h.push(n))}function we(e,t){var n=I(N++,7);return ke(n.__H,t)&&(n.__=e(),n.__H=t,n.__h=e),n.__}function Te(){for(var e;e=ge.shift();){var t=e.__H;if(e.__P&&t)try{t.__h.some(z),t.__h.some(Oe),t.__h=[]}catch(n){t.__h=[],F.__e(n,e.__v)}}}F.__b=function(e){P=null,_e&&_e(e)},F.__=function(e,t){e&&t.__k&&t.__k.__m&&(e.__m=t.__k.__m),Se&&Se(e,t)},F.__r=function(e){ve&&ve(e),N=0;var t=(P=e.__c).__H;t&&(pe===P?(t.__h=[],P.__h=[],t.__.some(function(e){e.__N&&(e.__=e.__N),e.u=e.__N=void 0})):(t.__h.some(z),t.__h.some(Oe),t.__h=[],N=0)),pe=P},F.diffed=function(e){ye&&ye(e);var t=e.__c;t&&t.__H&&(t.__H.__h.length&&(ge.push(t)!==1&&me===F.requestAnimationFrame||((me=F.requestAnimationFrame)||De)(Te)),t.__H.__.some(function(e){e.u&&(e.__H=e.u),e.u=void 0})),pe=P=null},F.__c=function(e,t){t.some(function(e){try{e.__h.some(z),e.__h=e.__h.filter(function(e){return!e.__||Oe(e)})}catch(n){t.some(function(e){e.__h&&=[]}),t=[],F.__e(n,e.__v)}}),be&&be(e,t)},F.unmount=function(e){xe&&xe(e);var t,n=e.__c;n&&n.__H&&(n.__H.__.some(function(e){try{z(e)}catch(e){t=e}}),n.__H=void 0,t&&F.__e(t,n.__v))};var Ee=typeof requestAnimationFrame==`function`;function De(e){var t,n=function(){clearTimeout(r),Ee&&cancelAnimationFrame(t),setTimeout(e)},r=setTimeout(n,35);Ee&&(t=requestAnimationFrame(n))}function z(e){var t=P,n=e.__c;typeof n==`function`&&(e.__c=void 0,n()),P=t}function Oe(e){var t=P;e.__c=e.__(),P=t}function ke(e,t){return!e||e.length!==t.length||t.some(function(t,n){return t!==e[n]})}function Ae(e,t){return typeof t==`function`?t(e):t}var je=0;Array.isArray;function B(e,n,r,i,a,o){n||={};var s,c,l=n;if(`ref`in l)for(c in l={},n)c==`ref`?s=n[c]:l[c]=n[c];var u={type:e,props:l,key:r,ref:s,__k:null,__:null,__b:0,__e:null,__c:null,constructor:void 0,__v:--je,__i:-1,__u:0,__source:a,__self:o};if(typeof e==`function`&&(s=e.defaultProps))for(c in s)l[c]===void 0&&(l[c]=s[c]);return t.vnode&&t.vnode(u),u}var Me=({class:e,label:t})=>B(`span`,{class:`hn-logo ${e??``}`.trim(),"aria-label":t,children:[B(`svg`,{"aria-hidden":`true`,viewBox:`0 0 36 36`,width:`36`,height:`36`,children:[B(`rect`,{width:`36`,height:`36`,rx:`11`,fill:`currentColor`,opacity:`0.12`}),B(`path`,{d:`M19.8 5.5c.8 4-2.8 5.9-4.7 8.2-1.8 2.1-2.5 4.9-.3 7 0-2.8 1.7-4.6 4.2-6.7 3.2 3 5.3 5.8 5.3 9.2 0 4.4-3.3 7.3-7.6 7.3-4.8 0-8.3-3.6-8.3-8.4 0-6.1 6.3-9.2 11.4-16.6Z`,fill:`currentColor`}),B(`path`,{d:`M21.7 25.7c0 2.2-1.7 3.8-3.9 3.8s-4-1.6-4-3.8c0-1.7 1-3.1 3.4-5.2.1 1.7 1.4 2.6 2.4 3.4.8.6 2.1 1 2.1 1.8Z`,fill:`currentColor`,opacity:`0.38`})]}),B(`span`,{children:t})]}),Ne=`preactpress-theme`;function Pe(){try{let e=localStorage.getItem(Ne);return e===`light`||e===`dark`?e:null}catch{return null}}function Fe(e){e===null?document.documentElement.removeAttribute(`data-theme`):document.documentElement.setAttribute(`data-theme`,e)}function Ie(){let e=Pe(),t=window.matchMedia(`(prefers-color-scheme: dark)`).matches,n=e===`dark`||e===null&&t?`light`:`dark`;Fe(n);try{localStorage.setItem(Ne,n)}catch{}}var Le=()=>(R(()=>{function e(e){if(e.key!==Ne)return;let t=e.newValue;Fe(t===`light`||t===`dark`?t:null)}return window.addEventListener(`storage`,e),()=>window.removeEventListener(`storage`,e)},[]),B(`button`,{type:`button`,class:`hn-theme-toggle`,onClick:Ie,"aria-label":`Toggle theme`,children:[B(`span`,{class:`hn-theme-toggle-moon`,"aria-hidden":`true`,children:B(`svg`,{viewBox:`0 0 24 24`,width:`18`,height:`18`,fill:`none`,stroke:`currentColor`,children:B(`path`,{d:`M21 14.8A8.5 8.5 0 0 1 9.2 3a7 7 0 1 0 11.8 11.8Z`,strokeLinecap:`round`,strokeLinejoin:`round`,strokeWidth:`1.7`})})}),B(`span`,{class:`hn-theme-toggle-sun`,"aria-hidden":`true`,children:B(`svg`,{viewBox:`0 0 24 24`,width:`18`,height:`18`,fill:`none`,stroke:`currentColor`,children:[B(`circle`,{cx:`12`,cy:`12`,r:`3.5`,strokeWidth:`1.7`}),B(`path`,{d:`M12 2.5v2M12 19.5v2M4.6 4.6 6 6M18 18l1.4 1.4M2.5 12h2M19.5 12h2M4.6 19.4 6 18M18 6l1.4-1.4`,strokeLinecap:`round`,strokeWidth:`1.7`})]})})]})),Re=`<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>GitHub</title><path fill="currentColor" d="M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.404 1.02.005 2.04.137 3 .404 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12"/></svg>`;function V(e,t){return/^(?:[a-z]+:)?\/\//i.test(t)||/^(?:data|mailto|tel):/i.test(t)||t.startsWith(`#`)?t:`${e===`/`?``:e.replace(/\/$/,``)}${t.startsWith(`/`)?t:`/${t}`}`}function H(e){let t=e.split(/[?#]/,1)[0]||`/`;return(t.startsWith(`/`)?t:`/${t}`).replace(/\/$/,``)||`/`}function U(e,t){if(!t||/^(?:[a-z]+:)?\/\//i.test(t))return!1;let n=H(e),r=H(t);return n===r||r!==`/`&&n.startsWith(`${r}/`)}function ze(e){return e==null||typeof e==`boolean`?``:typeof e==`string`||typeof e==`number`?String(e):Array.isArray(e)?e.map(ze).join(``):typeof e==`object`&&`props`in e?ze(e.props.children):``}function Be(e){return e.toLowerCase().trim().replace(/<[^>]+>/g,``).replace(/&[a-z0-9#]+;/gi,``).replace(/[^a-z0-9]+/g,`-`).replace(/^-+|-+$/g,``)||`section`}function Ve(e){return`/tags/${Be(e)}`}function He(e,t){if(!e)return[];if(Array.isArray(e))return e;let n=H(t),r=Object.entries(e).map(([e,t])=>({prefix:H(e),groups:t})).filter(({prefix:e})=>e!==`/`).sort((e,t)=>t.prefix.length-e.prefix.length);for(let{prefix:e,groups:t}of r)if(n===e||n.startsWith(`${e}/`))return t;return e[`/`]??e[``]??[]}function Ue(e){let t=[];for(let n of e)n.link&&t.push({text:n.text,link:n.link}),n.items?.length&&t.push(...Ue(n.items));return t}function We(e){return e.flatMap(e=>Ue(e.items))}function Ge(e){return typeof e==`object`?e.svg:e.toLowerCase()===`github`?Re:void 0}function Ke(e,t){return t||(typeof e==`string`?e:`Social link`)}function qe(){let e=new Map,t=t=>({children:n,...r})=>{let i=Be(ze(n)),a=e.get(i)??0;e.set(i,a+1);let o=a===0?i:`${i}-${a+1}`;return B(t,{...r,id:o,class:`hn-heading ${r.class??``}`.trim(),children:[n,B(`a`,{class:`hn-heading-anchor`,href:`#${o}`,"aria-label":`Link to section`,children:`#`})]})};return{h2:t(`h2`),h3:t(`h3`)}}function Je(e,t){return H(e)===H(t||`/`)}var Ye=({site:e,themeConfig:t,routePath:n,page:r,locale:i,locales:a=[],localizeRoute:o})=>{let[s,c]=L(``),l=Je(n,i?.prefix),u=He(t.sidebar,n),d=We(u),f=s.trim().toLowerCase(),p=we(()=>f?u.map(e=>({...e,items:e.items.filter(e=>e.text.toLowerCase().includes(f))})).filter(e=>e.items.length>0):u,[u,f]),m=d.findIndex(e=>U(n,e.link)),h=m>0?d[m-1]:void 0,g=m>=0&&m<d.length-1?d[m+1]:void 0,_=qe(),v=r?.kind===`mdx`?r.Component:void 0,y=r?.tags??[],b=t.tags!==!1&&y.length>0&&!r?.meta.tagIndex,x=t.editLink&&r?.relativePath?t.editLink.pattern.replace(/:path/g,r.relativePath):void 0,S=r?.lastUpdated?new Date(r.lastUpdated).toLocaleDateString(e.lang||`en`,{year:`numeric`,month:`short`,day:`numeric`}):void 0,C=t.outline===!1||l?[]:r?.headings??[],w=l?`hn-home-content`:`hn-doc-content`,T=v?B(`div`,{class:w,children:B(v,{components:_})}):B(`div`,{class:w,dangerouslySetInnerHTML:{__html:r?.kind===`markdown`?r.html:``}});return R(()=>{c(``)},[n]),B(`div`,{class:`hn-site${l?` is-home`:``}`,children:[B(`a`,{class:`hn-skip`,href:`#content`,children:`Skip to content`}),B(`header`,{class:`hn-header`,children:B(`div`,{class:`hn-header-inner`,children:[B(`a`,{class:`hn-brand`,href:V(e.base,i?.prefix||`/`),"aria-label":e.title,children:B(Me,{label:e.title})}),B(`div`,{class:`hn-header-actions`,children:[B(`nav`,{class:`hn-nav`,"aria-label":`Main navigation`,children:(t.nav??[]).map(t=>t.link?B(`a`,{class:U(n,t.link)?`active`:``,href:V(e.base,t.link),"aria-current":U(n,t.link)?`page`:void 0,children:t.text},t.link):null)}),t.socialLinks?.length?B(`div`,{class:`hn-social`,"aria-label":`Social links`,children:t.socialLinks.map(t=>{let n=Ge(t.icon);return B(`a`,{href:V(e.base,t.link),"aria-label":Ke(t.icon,t.ariaLabel),children:n?B(`span`,{dangerouslySetInnerHTML:{__html:n}}):Ke(t.icon,t.ariaLabel)},`${Ke(t.icon,t.ariaLabel)}:${t.link}`)})}):null,a.length>1&&o?B(`details`,{class:`hn-locale-switcher`,children:[B(`summary`,{children:i?.label??`Language`}),B(`div`,{class:`hn-locale-menu`,children:a.map(t=>{let n=t.key===i?.key;return B(`a`,{href:V(e.base,o(t)),"aria-current":n?`page`:void 0,class:n?`active`:``,children:t.label},t.key)})})]}):null,B(Le,{})]})]})}),l?B(`main`,{id:`content`,class:`hn-home-main`,children:T}):B(`div`,{class:`hn-doc-shell`,children:[B(`aside`,{class:`hn-sidebar`,"aria-label":`Documentation navigation`,children:B(`div`,{class:`hn-sidebar-panel`,children:[t.search?B(`label`,{class:`hn-search`,children:[B(`span`,{children:`Search pages`}),B(`input`,{type:`search`,value:s,placeholder:`Filter documentation...`,onInput:e=>c(e.currentTarget.value)})]}):null,p.map((t,r)=>B(`div`,{class:`hn-sidebar-group`,children:[t.text?B(`h2`,{children:t.text}):null,B(`ul`,{children:t.items.map(t=>t.link?B(`li`,{children:B(`a`,{class:U(n,t.link)?`active`:``,href:V(e.base,t.link),"aria-current":U(n,t.link)?`page`:void 0,children:t.text})},t.link):null)})]},`${t.text??`group`}:${r}`))]})}),B(`main`,{id:`content`,class:`hn-doc-main`,children:B(`article`,{class:`hn-doc`,children:[B(`h1`,{class:`hn-doc-title`,children:r?.title??e.title}),r?.description?B(`p`,{class:`hn-doc-lead`,children:r.description}):null,b?B(`ul`,{class:`hn-tags`,"aria-label":`Tags`,children:y.map(t=>B(`li`,{children:B(`a`,{href:V(e.base,Ve(t)),children:t})},t))}):null,T,h||g?B(`nav`,{class:`hn-pager`,"aria-label":`Page navigation`,children:[h?B(`a`,{class:`previous`,href:V(e.base,h.link),children:[B(`span`,{children:`Previous`}),h.text]}):B(`span`,{}),g?B(`a`,{class:`next`,href:V(e.base,g.link),children:[B(`span`,{children:`Next`}),g.text]}):null]}):null,t.lastUpdated||x?B(`footer`,{class:`hn-doc-meta`,children:[t.lastUpdated&&S?B(`span`,{children:[`Updated `,S]}):null,x?B(`span`,{children:[t.lastUpdated&&S?` · `:null,B(`a`,{href:x,children:t.editLink?.text??`Edit this page`})]}):null]}):null]})}),C.length>0?B(`aside`,{class:`hn-outline`,"aria-label":`On this page`,children:B(`div`,{class:`hn-outline-panel`,children:[B(`h2`,{children:`On this page`}),B(`ul`,{children:C.map(e=>B(`li`,{class:`level-${e.level}`,children:B(`a`,{href:`#${e.id}`,children:e.text})},e.id))})]})}):null]}),t.footer?B(`footer`,{class:`hn-footer`,children:t.footer}):null]})},Xe=`modulepreload`,Ze=function(e){return`/`+e},Qe={},W=function(e,t,n){let r=Promise.resolve();if(t&&t.length>0){let e=document.getElementsByTagName(`link`),i=document.querySelector(`meta[property=csp-nonce]`),a=i?.nonce||i?.getAttribute(`nonce`);function o(e){return Promise.all(e.map(e=>Promise.resolve(e).then(e=>({status:`fulfilled`,value:e}),e=>({status:`rejected`,reason:e}))))}r=o(t.map(t=>{if(t=Ze(t,n),t in Qe)return;Qe[t]=!0;let r=t.endsWith(`.css`),i=r?`[rel="stylesheet"]`:``;if(n)for(let n=e.length-1;n>=0;n--){let i=e[n];if(i.href===t&&(!r||i.rel===`stylesheet`))return}else if(document.querySelector(`link[href="${t}"]${i}`))return;let o=document.createElement(`link`);if(o.rel=r?`stylesheet`:Xe,r||(o.as=`script`),o.crossOrigin=``,o.href=t,a&&o.setAttribute(`nonce`,a),document.head.appendChild(o),r)return new Promise((e,n)=>{o.addEventListener(`load`,e),o.addEventListener(`error`,()=>n(Error(`Unable to preload CSS for ${t}`)))})}))}function i(e){let t=new Event(`vite:preloadError`,{cancelable:!0});if(t.payload=e,window.dispatchEvent(t),!t.defaultPrevented)throw e}return r.then(t=>{for(let e of t||[])e.status===`rejected`&&i(e.reason);return e().catch(i)})},$e=`/./README./about./de./de/about./de/guide/commands./de/guide/configuration./de/guide/deploy./de/guide/first-five-minutes./de/guide/getting-started./de/guide/routing./de/guide/seiten-erstellen./de/guide/what-is-preactpress./de/interactive./de/markdown-examples./de/parts/include-body./de/tags/markdown./guide/commands./guide/configuration./guide/creating-pages./guide/deploy./guide/first-five-minutes./guide/getting-started./guide/routing./guide/what-is-preactpress./interactive./markdown-examples./partials/shared-note./parts/include-body./tags/markdown`.split(`.`),et={"/README":{kind:`markdown`,meta:{},tags:[],pageType:`website`,headings:[{id:`commands`,text:`Commands`,level:2},{id:`where-to-edit`,text:`Where to edit`,level:2},{id:`deploy`,text:`Deploy`,level:2}],relativePath:`README.md`,lastUpdated:`2026-06-05T07:27:55.507Z`},"/about":{kind:`markdown`,meta:{title:`About`,description:`About this site`},title:`About`,description:`About this site`,tags:[],pageType:`website`,headings:[],relativePath:`about.md`,lastUpdated:`2026-06-04T07:28:10.784Z`},"/de/about":{kind:`markdown`,meta:{title:`Über uns`,description:`Über diese Website`},title:`Über uns`,description:`Über diese Website`,tags:[],pageType:`website`,headings:[],relativePath:`de/about.md`,lastUpdated:`2026-06-04T07:28:10.783Z`},"/de/guide/commands":{kind:`markdown`,meta:{title:`Befehle`,description:`PreactPress-CLI für Entwicklung und Produktions-Builds`},title:`Befehle`,description:`PreactPress-CLI für Entwicklung und Produktions-Builds`,tags:[],pageType:`website`,headings:[{id:`entwicklung`,text:`Entwicklung`,level:2},{id:`production`,text:`Production`,level:2},{id:`projekt-anlegen`,text:`Projekt anlegen`,level:2},{id:`validierung`,text:`Validierung`,level:2}],relativePath:`de/guide/commands.md`,lastUpdated:`2026-06-05T05:42:40.467Z`},"/de/guide/configuration":{kind:`markdown`,meta:{title:`Konfiguration`,description:`Site-Config, Theme-Optionen und häufige Frontmatter-Felder`},title:`Konfiguration`,description:`Site-Config, Theme-Optionen und häufige Frontmatter-Felder`,tags:[],pageType:`website`,headings:[{id:`site-metadaten`,text:`Site-Metadaten`,level:2},{id:`inhaltsverzeichnis`,text:`Inhaltsverzeichnis`,level:2},{id:`theme-ohne-eigenen-code`,text:`Theme ohne eigenen Code`,level:2},{id:`globale-head-tags`,text:`Globale Head-Tags`,level:2},{id:`frontmatter-pro-seite`,text:`Frontmatter pro Seite`,level:2}],relativePath:`de/guide/configuration.md`,lastUpdated:`2026-06-05T06:34:21.154Z`},"/de/guide/deploy":{kind:`markdown`,meta:{title:`Deploy`,description:`Eine PreactPress-Site bauen und veröffentlichen`},title:`Deploy`,description:`Eine PreactPress-Site bauen und veröffentlichen`,tags:[],pageType:`website`,headings:[{id:`lokal-bauen-und-testen`,text:`Lokal bauen und testen`,level:2},{id:`produktionsmetadaten-konfigurieren`,text:`Produktionsmetadaten konfigurieren`,level:2},{id:`public-base-path`,text:`Public Base Path`,level:2},{id:`build-output`,text:`Build-Output`,level:2},{id:`plattform-einstellungen`,text:`Plattform-Einstellungen`,level:2},{id:`github-pages`,text:`GitHub Pages`,level:2},{id:`monorepos`,text:`Monorepos`,level:2},{id:`cache-headers`,text:`Cache-Headers`,level:2}],relativePath:`de/guide/deploy.md`,lastUpdated:`2026-06-04T07:28:10.781Z`},"/de/guide/first-five-minutes":{kind:`markdown`,meta:{title:`Die ersten 5 Minuten`,description:`Seitentitel ändern, eine Seite hinzufügen und die Navigation aktualisieren`},title:`Die ersten 5 Minuten`,description:`Seitentitel ändern, eine Seite hinzufügen und die Navigation aktualisieren`,tags:[],pageType:`website`,headings:[{id:`1-seitentitel-ndern`,text:`1. Seitentitel ändern`,level:2},{id:`2-eine-seite-hinzuf-gen`,text:`2. Eine Seite hinzufügen`,level:2},{id:`3-zur-navigation-hinzuf-gen`,text:`3. Zur Navigation hinzufügen`,level:2},{id:`n-chste-schritte`,text:`Nächste Schritte`,level:2}],relativePath:`de/guide/first-five-minutes.md`,lastUpdated:`2026-06-04T07:28:10.782Z`},"/de/guide/getting-started":{kind:`markdown`,meta:{title:`Getting Started`,description:`PreactPress installieren und eine neue Dokumentationsseite starten`},title:`Getting Started`,description:`PreactPress installieren und eine neue Dokumentationsseite starten`,tags:[],pageType:`website`,headings:[{id:`voraussetzungen`,text:`Voraussetzungen`,level:2},{id:`site-erstellen`,text:`Site erstellen`,level:2},{id:`dateistruktur`,text:`Dateistruktur`,level:2},{id:`die-config-datei`,text:`Die Config-Datei`,level:2},{id:`quelldateien`,text:`Quelldateien`,level:2},{id:`befehle`,text:`Befehle`,level:2},{id:`was-kommt-als-n-chstes`,text:`Was kommt als Nächstes?`,level:2}],relativePath:`de/guide/getting-started.md`,lastUpdated:`2026-06-04T07:28:10.782Z`},"/de/guide/routing":{kind:`markdown`,meta:{title:`Routing`,description:`Verstehe, wie PreactPress Dateien auf URLs abbildet`},title:`Routing`,description:`Verstehe, wie PreactPress Dateien auf URLs abbildet`,tags:[],pageType:`website`,headings:[{id:`dateibasiertes-routing`,text:`Dateibasiertes Routing`,level:2},{id:`projektroot-und-quellverzeichnis`,text:`Projektroot und Quellverzeichnis`,level:2},{id:`zwischen-seiten-verlinken`,text:`Zwischen Seiten verlinken`,level:2},{id:`locale-routen`,text:`Locale-Routen`,level:2},{id:`tag-routen`,text:`Tag-Routen`,level:2},{id:`base-path`,text:`Base Path`,level:2},{id:`route-rewrites`,text:`Route Rewrites`,level:2},{id:`clean-urls-und-hosting`,text:`Clean URLs und Hosting`,level:2},{id:`aktuelle-grenzen`,text:`Aktuelle Grenzen`,level:2}],relativePath:`de/guide/routing.md`,lastUpdated:`2026-06-05T06:28:18.706Z`},"/de/guide/seiten-erstellen":{kind:`markdown`,meta:{title:`Seiten erstellen`,description:`Neue Markdown- und MDX-Seiten anlegen, URLs verstehen und in die Navigation einbinden`},title:`Seiten erstellen`,description:`Neue Markdown- und MDX-Seiten anlegen, URLs verstehen und in die Navigation einbinden`,tags:[],pageType:`website`,headings:[{id:`kurz-berblick`,text:`Kurzüberblick`,level:2},{id:`schritt-f-r-schritt-eine-einfache-seite`,text:`Schritt für Schritt: eine einfache Seite`,level:2},{id:`wo-die-datei-liegt-welche-url`,text:`Wo die Datei liegt → welche URL`,level:2},{id:`quellverzeichnis-srcdir`,text:`Quellverzeichnis (srcDir)`,level:2},{id:`frontmatter-optional-aber-empfohlen`,text:`Frontmatter (optional, aber empfohlen)`,level:2},{id:`mdx-seiten-mit-komponenten`,text:`MDX-Seiten mit Komponenten`,level:2},{id:`in-die-navigation-einbinden`,text:`In die Navigation einbinden`,level:2},{id:`bersetzte-seite-locale`,text:`Übersetzte Seite (Locale)`,level:2},{id:`entw-rfe-und-pr-fung`,text:`Entwürfe und Prüfung`,level:2},{id:`typische-fehler`,text:`Typische Fehler`,level:2},{id:`n-chste-schritte`,text:`Nächste Schritte`,level:2}],relativePath:`de/guide/seiten-erstellen.md`,lastUpdated:`2026-06-05T05:42:40.470Z`},"/de/guide/what-is-preactpress":{kind:`markdown`,meta:{title:`Was ist PreactPress?`,description:`Erfahre, was PreactPress ist und wann du es einsetzen kannst`},title:`Was ist PreactPress?`,description:`Erfahre, was PreactPress ist und wann du es einsetzen kannst`,tags:[],pageType:`website`,headings:[{id:`einsatzbereiche`,text:`Einsatzbereiche`,level:2},{id:`dokumentation`,text:`Dokumentation`,level:3},{id:`blogs-portfolios-und-marketing-seiten`,text:`Blogs, Portfolios und Marketing-Seiten`,level:3},{id:`developer-experience`,text:`Developer Experience`,level:2},{id:`performance`,text:`Performance`,level:2},{id:`was-ist-mit-vitepress`,text:`Was ist mit VitePress?`,level:2},{id:`n-chste-schritte`,text:`Nächste Schritte`,level:2}],relativePath:`de/guide/what-is-preactpress.md`,lastUpdated:`2026-06-04T07:32:56.298Z`},"/de":{kind:`mdx`,meta:{title:`Schnell, schlank, auf Web-Standards gebaut`,description:`Ein von hono.dev inspiriertes Starter-Template für Dokumentation und Produktseiten mit PreactPress.`},title:`Schnell, schlank, auf Web-Standards gebaut`,description:`Ein von hono.dev inspiriertes Starter-Template für Dokumentation und Produktseiten mit PreactPress.`,tags:[],pageType:`website`,headings:[],relativePath:`de/index.mdx`,lastUpdated:`2026-06-05T07:24:36.654Z`},"/de/interactive":{kind:`mdx`,meta:{title:`Interaktives MDX`,description:`Markdown mit importierten Preact-Komponenten`},title:`Interaktives MDX`,description:`Markdown mit importierten Preact-Komponenten`,tags:[],pageType:`website`,headings:[{id:`preact-komponente`,text:`Preact-Komponente`,level:2},{id:`bild`,text:`Bild`,level:2},{id:`youtube`,text:`YouTube`,level:2}],relativePath:`de/interactive.mdx`,lastUpdated:`2026-06-04T07:28:10.783Z`},"/de/markdown-examples":{kind:`markdown`,meta:{title:`Markdown-Beispiele`,description:`Häufige Authoring-Snippets`,tags:[`markdown`]},title:`Markdown-Beispiele`,description:`Häufige Authoring-Snippets`,tags:[`markdown`],pageType:`website`,headings:[{id:`code`,text:`Code`,level:2},{id:`snippet-import`,text:`Snippet-Import`,level:2},{id:`links`,text:`Links`,level:2},{id:`tabellen`,text:`Tabellen`,level:2},{id:`zitate`,text:`Zitate`,level:2},{id:`container`,text:`Container`,level:2},{id:`gfm-alerts`,text:`GFM-Alerts`,level:2},{id:`heading-ids`,text:`Heading-IDs`,level:2},{id:`eigener-anker`,text:`Eigene Anker`,level:2},{id:`inline-inhaltsverzeichnis`,text:`Inline-Inhaltsverzeichnis`,level:2},{id:`erster-abschnitt`,text:`Erster Abschnitt`,level:3},{id:`zweiter-abschnitt`,text:`Zweiter Abschnitt`,level:3},{id:`code-gruppen`,text:`Code-Gruppen`,level:2},{id:`eigene-heading-ids`,text:`Eigene Heading-IDs`,level:2},{id:`stabile-id`,text:`Stabile Links`,level:2},{id:`emoji`,text:`Emoji`,level:2},{id:`inline-inhaltsverzeichnis-2`,text:`Inline-Inhaltsverzeichnis`,level:2},{id:`zweiter-abschnitt-2`,text:`Zweiter Abschnitt`,level:2},{id:`unterabschnitt`,text:`Unterabschnitt`,level:3},{id:`code-gruppen-2`,text:`Code-Gruppen`,level:2},{id:`markdown-inclusion`,text:`Markdown-Inclusion`,level:2},{id:`included-body`,text:`Included body`,level:2}],relativePath:`de/markdown-examples.md`,lastUpdated:`2026-06-05T06:18:01.992Z`},"/de/parts/include-body":{kind:`markdown`,meta:{},tags:[],pageType:`website`,headings:[{id:`eingebetteter-inhalt`,text:`Eingebetteter Inhalt`,level:2}],relativePath:`de/parts/include-body.md`,lastUpdated:`2026-06-05T06:17:57.331Z`},"/guide/commands":{kind:`markdown`,meta:{title:`Commands`,description:`PreactPress CLI reference for local development and production builds`},title:`Commands`,description:`PreactPress CLI reference for local development and production builds`,tags:[],pageType:`website`,headings:[{id:`development`,text:`Development`,level:2},{id:`production`,text:`Production`,level:2},{id:`project-setup`,text:`Project setup`,level:2},{id:`validation`,text:`Validation`,level:2}],relativePath:`guide/commands.md`,lastUpdated:`2026-06-05T05:42:40.517Z`},"/guide/configuration":{kind:`markdown`,meta:{title:`Configuration`,description:`Site config, theme options, and common frontmatter fields`},title:`Configuration`,description:`Site config, theme options, and common frontmatter fields`,tags:[],pageType:`website`,headings:[{id:`site-metadata`,text:`Site metadata`,level:2},{id:`content-directory`,text:`Content directory`,level:2},{id:`theme-without-custom-code`,text:`Theme without custom code`,level:2},{id:`search-providers`,text:`Search providers`,level:3},{id:`social-links`,text:`Social links`,level:3},{id:`global-head-tags`,text:`Global head tags`,level:2},{id:`page-frontmatter`,text:`Page frontmatter`,level:2}],relativePath:`guide/configuration.md`,lastUpdated:`2026-06-05T06:34:20.411Z`},"/guide/creating-pages":{kind:`markdown`,meta:{title:`Creating pages`,description:`Add new Markdown and MDX pages, understand URLs, and wire them into navigation`},title:`Creating pages`,description:`Add new Markdown and MDX pages, understand URLs, and wire them into navigation`,tags:[],pageType:`website`,headings:[{id:`quick-overview`,text:`Quick overview`,level:2},{id:`step-by-step-a-simple-page`,text:`Step by step: a simple page`,level:2},{id:`file-location-url`,text:`File location → URL`,level:2},{id:`source-directory-srcdir`,text:`Source directory (srcDir)`,level:2},{id:`frontmatter-optional-but-recommended`,text:`Frontmatter (optional but recommended)`,level:2},{id:`mdx-pages-with-components`,text:`MDX pages with components`,level:2},{id:`add-to-navigation`,text:`Add to navigation`,level:2},{id:`translated-page-locale`,text:`Translated page (locale)`,level:2},{id:`drafts-and-validation`,text:`Drafts and validation`,level:2},{id:`common-issues`,text:`Common issues`,level:2},{id:`next-steps`,text:`Next steps`,level:2}],relativePath:`guide/creating-pages.md`,lastUpdated:`2026-06-05T05:42:40.492Z`},"/guide/deploy":{kind:`markdown`,meta:{title:`Deploy`,description:`Build and publish a PreactPress site`},title:`Deploy`,description:`Build and publish a PreactPress site`,tags:[],pageType:`website`,headings:[{id:`build-and-test-locally`,text:`Build and test locally`,level:2},{id:`configure-production-metadata`,text:`Configure production metadata`,level:2},{id:`public-base-path`,text:`Public base path`,level:2},{id:`build-output`,text:`Build output`,level:2},{id:`platform-settings`,text:`Platform settings`,level:2},{id:`github-pages`,text:`GitHub Pages`,level:2},{id:`monorepos`,text:`Monorepos`,level:2},{id:`cache-headers`,text:`Cache headers`,level:2}],relativePath:`guide/deploy.md`,lastUpdated:`2026-06-04T07:28:10.774Z`},"/guide/first-five-minutes":{kind:`markdown`,meta:{title:`Your first 5 minutes`,description:`Change the site title, add a page, and update navigation`},title:`Your first 5 minutes`,description:`Change the site title, add a page, and update navigation`,tags:[],pageType:`website`,headings:[{id:`1-change-the-site-title`,text:`1. Change the site title`,level:2},{id:`2-add-a-page`,text:`2. Add a page`,level:2},{id:`3-add-it-to-the-navigation`,text:`3. Add it to the navigation`,level:2},{id:`next-steps`,text:`Next steps`,level:2}],relativePath:`guide/first-five-minutes.md`,lastUpdated:`2026-06-04T07:28:10.775Z`},"/guide/getting-started":{kind:`markdown`,meta:{title:`Getting Started`,description:`Install PreactPress and start a new documentation site`},title:`Getting Started`,description:`Install PreactPress and start a new documentation site`,tags:[],pageType:`website`,headings:[{id:`prerequisites`,text:`Prerequisites`,level:2},{id:`create-a-site`,text:`Create a site`,level:2},{id:`file-structure`,text:`File structure`,level:2},{id:`the-config-file`,text:`The config file`,level:2},{id:`source-files`,text:`Source files`,level:2},{id:`commands`,text:`Commands`,level:2},{id:`what-s-next`,text:`What's next?`,level:2}],relativePath:`guide/getting-started.md`,lastUpdated:`2026-06-04T07:28:10.777Z`},"/guide/routing":{kind:`markdown`,meta:{title:`Routing`,description:`Understand how PreactPress maps files to URLs`},title:`Routing`,description:`Understand how PreactPress maps files to URLs`,tags:[],pageType:`website`,headings:[{id:`file-based-routing`,text:`File-based routing`,level:2},{id:`project-root-and-source-directory`,text:`Project root and source directory`,level:2},{id:`linking-between-pages`,text:`Linking between pages`,level:2},{id:`locale-routes`,text:`Locale routes`,level:2},{id:`tag-routes`,text:`Tag routes`,level:2},{id:`base-path`,text:`Base path`,level:2},{id:`route-rewrites`,text:`Route rewrites`,level:2},{id:`clean-urls-and-hosting`,text:`Clean URLs and hosting`,level:2},{id:`current-limitations`,text:`Current limitations`,level:2}],relativePath:`guide/routing.md`,lastUpdated:`2026-06-05T06:28:08.578Z`},"/guide/what-is-preactpress":{kind:`markdown`,meta:{title:`What is PreactPress?`,description:`Learn what PreactPress is and when to use it`},title:`What is PreactPress?`,description:`Learn what PreactPress is and when to use it`,tags:[],pageType:`website`,headings:[{id:`use-cases`,text:`Use cases`,level:2},{id:`documentation`,text:`Documentation`,level:3},{id:`blogs-portfolios-and-marketing-sites`,text:`Blogs, portfolios, and marketing sites`,level:3},{id:`developer-experience`,text:`Developer experience`,level:2},{id:`performance`,text:`Performance`,level:2},{id:`what-about-vitepress`,text:`What about VitePress?`,level:2},{id:`next-steps`,text:`Next steps`,level:2}],relativePath:`guide/what-is-preactpress.md`,lastUpdated:`2026-06-04T07:32:52.322Z`},"/":{kind:`mdx`,meta:{title:`Fast, lightweight, built on Web Standards`,description:`A Hono-inspired starter for documentation and product sites built with PreactPress.`},title:`Fast, lightweight, built on Web Standards`,description:`A Hono-inspired starter for documentation and product sites built with PreactPress.`,tags:[],pageType:`website`,headings:[],relativePath:`index.mdx`,lastUpdated:`2026-06-05T07:24:28.039Z`},"/interactive":{kind:`mdx`,meta:{title:`Interactive MDX`,description:`Markdown with imported Preact components`},title:`Interactive MDX`,description:`Markdown with imported Preact components`,tags:[],pageType:`website`,headings:[{id:`preact-component`,text:`Preact component`,level:2},{id:`image`,text:`Image`,level:2},{id:`youtube`,text:`YouTube`,level:2}],relativePath:`interactive.mdx`,lastUpdated:`2026-06-04T07:28:10.784Z`},"/markdown-examples":{kind:`markdown`,meta:{title:`Markdown examples`,description:`Common authoring snippets`,tags:[`markdown`]},title:`Markdown examples`,description:`Common authoring snippets`,tags:[`markdown`],pageType:`website`,headings:[{id:`code`,text:`Code`,level:2},{id:`snippet-import`,text:`Snippet import`,level:2},{id:`links`,text:`Links`,level:2},{id:`tables`,text:`Tables`,level:2},{id:`quotes`,text:`Quotes`,level:2},{id:`containers`,text:`Containers`,level:2},{id:`gfm-alerts`,text:`GFM alerts`,level:2},{id:`custom-heading-ids`,text:`Custom heading IDs`,level:2},{id:`stable-id`,text:`Stable links`,level:2},{id:`emoji`,text:`Emoji`,level:2},{id:`inline-table-of-contents`,text:`Inline table of contents`,level:2},{id:`second-section`,text:`Second section`,level:2},{id:`sub-section`,text:`Sub section`,level:3},{id:`code-groups`,text:`Code groups`,level:2},{id:`markdown-inclusion`,text:`Markdown inclusion`,level:2},{id:`included-body`,text:`Included body`,level:2},{id:`heading-ids`,text:`Heading IDs`,level:2},{id:`custom-anchor`,text:`Custom anchors`,level:2},{id:`inline-table-of-contents-2`,text:`Inline table of contents`,level:2},{id:`first-section`,text:`First section`,level:3},{id:`second-section-2`,text:`Second section`,level:3},{id:`code-groups-2`,text:`Code groups`,level:2},{id:`markdown-includes`,text:`Markdown includes`,level:2},{id:`emoji-and-math`,text:`Emoji and math`,level:2}],relativePath:`markdown-examples.md`,lastUpdated:`2026-06-05T06:17:55.859Z`},"/partials/shared-note":{kind:`markdown`,meta:{},tags:[],pageType:`website`,headings:[],relativePath:`partials/shared-note.md`,lastUpdated:`2026-06-05T06:17:39.711Z`},"/parts/include-body":{kind:`markdown`,meta:{},tags:[],pageType:`website`,headings:[{id:`included-body`,text:`Included body`,level:2}],relativePath:`parts/include-body.md`,lastUpdated:`2026-06-05T06:17:56.203Z`},"/de/tags/markdown":{kind:`markdown`,meta:{tagIndex:!0,tag:`markdown`,tagSlug:`markdown`},title:`Tag: markdown`,description:`Pages tagged “markdown”`,tags:[`markdown`],pageType:`website`,headings:[]},"/tags/markdown":{kind:`markdown`,meta:{tagIndex:!0,tag:`markdown`,tagSlug:`markdown`},title:`Tag: markdown`,description:`Pages tagged “markdown”`,tags:[`markdown`],pageType:`website`,headings:[]}},tt={"/de":()=>W(()=>import(`./de-D5r6Ye70.js`),__vite__mapDeps([0,1])),"/de/interactive":()=>W(()=>import(`./interactive-BznI4IQ3.js`),__vite__mapDeps([2,3])),"/":()=>W(()=>import(`./hono-BXWYYdyv.js`),__vite__mapDeps([4,1])),"/interactive":()=>W(()=>import(`./interactive-Bxo-WBpC.js`),__vite__mapDeps([5,3]))},G={title:`Hono Starter`,description:`Fast, lightweight docs and landing pages built on Web Standards.`,base:`/`,lang:`en`},nt={outline:!0,search:!0,lastUpdated:!0,footer:`Built with PreactPress.`,socialLinks:[{icon:`github`,link:`https://github.com/your-org/your-project`,ariaLabel:`GitHub`}]},K={defaultLocaleKey:`root`,locales:[{key:`root`,label:`English`,lang:`en`,link:`/`,prefix:``,site:{title:`Hono Starter`,description:`Fast, lightweight docs and landing pages built on Web Standards.`,base:`/`,lang:`en`},themeConfig:{outline:!0,search:!0,lastUpdated:!0,footer:`Built with PreactPress.`,socialLinks:[{icon:`github`,link:`https://github.com/your-org/your-project`,ariaLabel:`GitHub`}],nav:[{text:`Docs`,link:`/guide/what-is-preactpress`},{text:`Examples`,link:`/markdown-examples`},{text:`About`,link:`/about`}],sidebar:[{text:`Introduction`,items:[{text:`Welcome`,link:`/`},{text:`What is PreactPress?`,link:`/guide/what-is-preactpress`},{text:`Getting Started`,link:`/guide/getting-started`},{text:`Routing`,link:`/guide/routing`},{text:`Deploy`,link:`/guide/deploy`},{text:`Your first 5 minutes`,link:`/guide/first-five-minutes`},{text:`Creating pages`,link:`/guide/creating-pages`},{text:`Commands`,link:`/guide/commands`},{text:`Configuration`,link:`/guide/configuration`}]},{text:`Reference`,items:[{text:`Markdown examples`,link:`/markdown-examples`},{text:`Interactive MDX`,link:`/interactive`}]}]}},{key:`de`,label:`Deutsch`,lang:`de`,link:`/de/`,prefix:`/de`,site:{title:`Hono Starter`,description:`Schnelle, schlanke Docs und Landing Pages auf Web-Standards.`,base:`/`,lang:`de`},themeConfig:{outline:!0,search:!0,lastUpdated:!0,footer:`Erstellt mit PreactPress.`,socialLinks:[{icon:`github`,link:`https://github.com/your-org/your-project`,ariaLabel:`GitHub`}],nav:[{text:`Docs`,link:`/de/guide/what-is-preactpress`},{text:`Beispiele`,link:`/de/markdown-examples`},{text:`Über uns`,link:`/de/about`}],sidebar:[{text:`Einführung`,items:[{text:`Willkommen`,link:`/de`},{text:`Was ist PreactPress?`,link:`/de/guide/what-is-preactpress`},{text:`Getting Started`,link:`/de/guide/getting-started`},{text:`Routing`,link:`/de/guide/routing`},{text:`Deploy`,link:`/de/guide/deploy`},{text:`Die ersten 5 Minuten`,link:`/de/guide/first-five-minutes`},{text:`Seiten erstellen`,link:`/de/guide/seiten-erstellen`},{text:`Befehle`,link:`/de/guide/commands`},{text:`Konfiguration`,link:`/de/guide/configuration`}]},{text:`Referenz`,items:[{text:`Markdown-Beispiele`,link:`/de/markdown-examples`},{text:`Interaktives MDX`,link:`/de/interactive`}]}]}}]};function rt(e,t){if(e===!1)return t.title?.trim()||t.siteTitle;let n=e?.trim()||`:title | :siteTitle`;return t.title?.trim()?n.replace(/:title/g,t.title.trim()).replace(/:siteTitle/g,t.siteTitle):t.siteTitle}function it(e){let t=e?.titleTemplate;return t===!1?!1:typeof t==`string`?t:void 0}function at(e,t=155){let n=e.replace(/<[^>]+>/g,` `).replace(/&[a-z0-9#]+;/gi,` `).replace(/\s+/g,` `).trim();if(!n)return``;if(n.length<=t)return n;let r=n.slice(0,t),i=r.lastIndexOf(` `);return`${(i>40?r.slice(0,i):r).trim()}…`}function ot(e,t){let n=rt(e?.titleTemplate??t.titleTemplate,{title:e?.title,siteTitle:t.title}),r=e?.description&&String(e.description).trim()||t.description.trim();!r&&e?.kind===`markdown`&&e.html&&(r=at(e.html));let i=e?.tags?.filter(e=>e.trim()).map(e=>e.trim())??[],a=e?.image?.trim()||void 0,o=e?.pageType===`article`?`article`:`website`;return{title:n,description:r,tags:i,image:a,pageType:o}}function st(e){let t=e?.head;if(!Array.isArray(t))return[];let n=[];for(let e of t){let t=ct(e);t&&n.push(t)}return n}function ct(e){if(!Array.isArray(e)||e.length<2)return;let t=e[0],n=e[1];if(t!==`meta`&&t!==`link`&&t!==`script`||!n||typeof n!=`object`)return;let r=n;return e.length>=3&&t===`script`?[`script`,r,typeof e[2]==`string`?e[2]:``]:[t,r]}function q(e,t){return`${e===`/`?``:e.replace(/\/$/,``)}${t.startsWith(`/`)?t:`/${t}`}`}function lt(e){let t=q(e.base,e.route===`/`?`/`:`${e.route}/`);return e.url?`${e.url}${t}`:t}function J(e){let t=e.split(/[?#]/,1)[0]||`/`;return(t.startsWith(`/`)?t:`/${t}`).replace(/\/$/,``)||`/`}function ut(e,t){let n=t===`/`?``:t.replace(/\/$/,``),r=e;return n&&r.startsWith(n)&&(r=r.slice(n.length)||`/`),J(r)}function Y(e,t){if(!t)return;let n=J(e);return[...t.locales].filter(e=>e.prefix).sort((e,t)=>t.prefix.length-e.prefix.length).find(e=>n===e.prefix||n.startsWith(`${e.prefix}/`))||(t.locales.find(e=>e.key===t.defaultLocaleKey)??t.locales[0])}function dt(e,t){let n=J(e);return t?.prefix?n===t.prefix?`/`:n.startsWith(`${t.prefix}/`)?J(n.slice(t.prefix.length)):n:n}function ft(e,t){return dt(e,Y(e,t))}function pt(e,t){let n=J(e);return t.prefix?n===`/`?t.prefix:J(`${t.prefix}${n}`):n}function mt(e,t,n,r){let i=pt(ft(e,n),t);return!r||r.has(i)?i:J(t.link)}function ht(e,t,n){return Y(t,n)?.site??e}function gt(e,t,n){return Y(t,n)?.themeConfig??e}function X(e,t,n){if(!n)return;let r=document.head.querySelector(`meta[${e}="${t}"]`);r||(r=document.createElement(`meta`),r.setAttribute(e,t),document.head.appendChild(r)),r.content=n}function Z(e,t){document.head.querySelectorAll(`meta[${e}="${t}"]`).forEach(e=>e.remove())}function _t(e,t,n){if(!n)return;let r=document.createElement(`meta`);r.setAttribute(e,t),r.content=n,document.head.appendChild(r)}function vt(e){if(!e)return;let t=document.head.querySelector(`link[rel="canonical"]`);t||(t=document.createElement(`link`),t.rel=`canonical`,document.head.appendChild(t)),t.href=e}function yt(){document.head.querySelectorAll(`link[rel="canonical"]`).forEach(e=>e.remove())}function bt(e){if(document.head.querySelectorAll(`link[rel="alternate"][hreflang]`).forEach(e=>e.remove()),!(!e.site.url||!e.i18n))for(let t of e.i18n.locales){let n=mt(e.route,t,e.i18n,e.routes);if(e.routes&&!e.routes.has(n))continue;let r=document.createElement(`link`);r.rel=`alternate`,r.hreflang=t.lang,r.href=lt({url:e.site.url,base:e.site.base,route:n}),document.head.appendChild(r)}}function xt(e){let[t,n,r]=e;if(t===`meta`){let e=`name`in n&&n.name?`name`:`property`in n?`property`:void 0;if(e&&typeof n[e]==`string`){X(e,String(n[e]),String(n.content??``));return}}if(t===`link`&&n.rel&&typeof n.href==`string`){let e=document.head.querySelector(`link[rel="${n.rel}"]${n.hreflang?`[hreflang="${n.hreflang}"]`:``}`);if(e)e.href=String(n.href);else{e=document.createElement(`link`);for(let[t,r]of Object.entries(n))r!=null&&r!==!1&&e.setAttribute(t,String(r));document.head.appendChild(e)}return}if(t===`script`){let e=typeof n.id==`string`?n.id:void 0,t=e?document.getElementById(e):null;if(!t){t=document.createElement(`script`);for(let[e,r]of Object.entries(n))r!=null&&r!==!1&&t.setAttribute(e,String(r));t.textContent=r??``,document.head.appendChild(t)}}}function St(e,t){if(t)return/^(?:[a-z]+:)?\/\//i.test(t)?t:e.url?`${e.url}${q(e.base,t)}`:q(e.base,t)}function Ct(e){let{site:t,i18n:n,routes:r,route:i,page:a}=e,o=ht(t,i,n),s=a?.title,c=a?.description,l=a?.tags,u=a?.image,d=a?.pageType,f=a?.kind,p=a?.kind===`markdown`?a.html:void 0,m=a?.meta;R(()=>{let e=ot(f===`markdown`?{title:s,titleTemplate:it(m),description:c,tags:l,image:u,pageType:d,kind:`markdown`,html:p}:f?{title:s,titleTemplate:it(m),description:c,tags:l,image:u,pageType:d,kind:f}:void 0,o);for(let e of st(m))xt(e);document.title=e.title,X(`name`,`description`,e.description),X(`property`,`og:title`,e.title),X(`property`,`og:description`,e.description),X(`property`,`og:type`,e.pageType),X(`name`,`twitter:card`,e.image?`summary_large_image`:`summary`),X(`name`,`twitter:title`,e.title),X(`name`,`twitter:description`,e.description),Z(`name`,`keywords`),Z(`property`,`article:tag`);for(let t of e.tags)_t(`property`,`article:tag`,t);let t=St(o,e.image);t?(X(`property`,`og:image`,t),X(`name`,`twitter:image`,t)):(Z(`property`,`og:image`),Z(`name`,`twitter:image`));let a=lt({url:o.url,base:o.base,route:i});a?(X(`property`,`og:url`,a),vt(a)):(Z(`property`,`og:url`),yt()),bt({site:o,i18n:n,route:i,routes:r}),document.documentElement.lang!==o.lang&&(document.documentElement.lang=o.lang)},[o,n,i,r,s,c,l,u,d,f,p,m])}var wt=`preactpress-content`;function Tt(e){return e===`/`?`_index.json`:`${e.replace(/^\/+|\/+$/g,``).split(`/`).map(e=>encodeURIComponent(e)).join(`__`)}.json`}function Et(e){return`${wt}/${Tt(e)}`}var Q=new Map;function Dt(){return Q.get(`/404`)??{kind:`markdown`,html:`<p>Page not found.</p>`,title:`404`,description:void 0,meta:{},headings:[]}}function Ot(e,t){t&&Q.set(e,t)}async function kt(e,t){let n=et[e],r=q(t,Et(e)),i=await fetch(r,{credentials:`same-origin`});if(!i.ok)throw Error(`Failed to load page ${e}`);let a=await i.json();return{...n,...a,kind:`markdown`}}async function At(e,t){let n=Q.get(e);if(n)return n;let r=et[e];if(!r)return Dt();if(r.kind===`mdx`){let t=tt[e];if(!t)return Dt();let n=await t(),i={...r,kind:`mdx`,Component:n.default};return Q.set(e,i),i}let i=await kt(e,t);return Q.set(e,i),i}function jt(e,t){Q.has(e)||At(e,t).catch(()=>{})}function Mt(){return ut(window.location.pathname,G.base)}function Nt(e){let t=new URL(e,window.location.href);if(t.origin!==window.location.origin)return;let n=G.base===`/`?``:G.base.replace(/\/$/,``);if(!(n&&t.pathname!==n&&!t.pathname.startsWith(`${n}/`)))return J(n?t.pathname.slice(n.length)||`/`:t.pathname)}function Pt(e){let t=e.target;return(t instanceof Element?t:t instanceof Text?t.parentElement:null)?.closest(`a[href]`)??null}function Ft(e){let t=et[e];return{kind:`markdown`,html:`<p>Loading...</p>`,title:t?.title,description:t?.description,tags:t?.tags,image:t?.image,pageType:t?.pageType,meta:t?.meta??{},headings:t?.headings??[]}}function It({routePath:e,initialPage:t}){let[n,r]=L(()=>J(e)),[i,a]=L(()=>t??Ft(e)),o=new Set($e),s=Y(n,K),c=ht(G,n,K),l=gt(nt,n,K);return R(()=>{t&&Ot(J(e),t)},[t,e]),R(()=>{let e=!1;return a(Ft(n)),At(n,G.base).then(t=>{e||a(t)}).catch(()=>{e||a({kind:`markdown`,html:`<p>Page not found.</p>`,title:`404`,description:c.description,meta:{},headings:[]})}),()=>{e=!0}},[c.description,n]),R(()=>{let e=()=>r(Mt()),t=e=>{if(e.defaultPrevented||e.button!==0||e.metaKey||e.altKey||e.ctrlKey||e.shiftKey)return;let t=Pt(e);if(!t||t.target||t.hasAttribute(`download`))return;let i=Nt(t.href);if(!i)return;let a=new URL(t.href);if(a.hash&&i===n){document.getElementById(a.hash.slice(1))?.scrollIntoView();return}e.preventDefault(),window.history.pushState({},``,a),r(i),window.scrollTo({top:0})},i=e=>{let t=Pt(e);if(!t)return;let n=Nt(t.href);n&&jt(n,G.base)};return window.addEventListener(`popstate`,e),document.addEventListener(`click`,t),document.addEventListener(`mouseenter`,i,!0),()=>{window.removeEventListener(`popstate`,e),document.removeEventListener(`click`,t),document.removeEventListener(`mouseenter`,i,!0)}},[n]),R(()=>{n!==J(e)&&document.getElementById(`content`)?.focus()},[n,e]),Ct({site:G,i18n:K,routes:o,route:n,page:i?.kind===`markdown`?{meta:i.meta,title:i.title,description:i.description,tags:i.tags,image:i.image,pageType:i.pageType,kind:`markdown`,html:i.html}:i?{meta:i.meta,title:i.title,description:i.description,tags:i.tags,image:i.image,pageType:i.pageType,kind:`mdx`}:void 0}),B(Ye,{site:c,themeConfig:l,routePath:n,page:i,i18n:K,locale:s,locales:K?.locales,localizeRoute:e=>mt(n,e,K,o)})}function Lt(){let e=`/`.replace(/\/$/,``)||``,t=window.location.pathname;return e&&t.startsWith(e)&&(t=t.slice(e.length)||`/`),t.startsWith(`/`)||(t=`/${t}`),t.replace(/\/$/,``)||`/`}var $=document.getElementById(`app`);$&&(async()=>{let e=$.getAttribute(`data-preactpress-route`)??Lt(),t=document.getElementById(`__PREACTPRESS_PAGE_DATA__`),n=t?.textContent?JSON.parse(t.textContent):await At(e,`/`);Ot(e,n),fe(B(It,{routePath:e,initialPage:n}),$)})();export{L as n,S as r,B as t};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
:root{--hono-bg:#0f0f10;--hono-bg-soft:#171719;--hono-panel:#ffffff0a;--hono-panel-strong:#ffffff12;--hono-text:#fffff5e0;--hono-text-strong:#fffff5;--hono-muted:#ebebf59e;--hono-line:#ffffff1f;--hono-line-strong:#fff3;--hono-accent:#ff5b2e;--hono-accent-strong:#ffb08a;--hono-accent-ink:#1e100b;--hono-code-bg:#17171b;--hono-code-text:#f3f4f6;--hono-radius:1.1rem;--hono-shadow:0 24px 80px #0000006b;--hono-font-sans:ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;--hono-font-mono:ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;--lightningcss-light: ;--lightningcss-dark:initial;color-scheme:dark}:root[data-theme=light]{--hono-bg:#fff;--hono-bg-soft:#f7f7f8;--hono-panel:#0f172a0a;--hono-panel-strong:#0f172a12;--hono-text:#273142;--hono-text-strong:#101827;--hono-muted:#5f6b7a;--hono-line:#0f172a1f;--hono-line-strong:#0f172a33;--hono-accent:#e84518;--hono-accent-strong:#b72f0d;--hono-accent-ink:#fff;--hono-code-bg:#15171d;--hono-code-text:#f9fafb;--hono-shadow:0 24px 70px #0f172a1f;--lightningcss-light:initial;--lightningcss-dark: ;color-scheme:light}*,:before,:after{box-sizing:border-box}html{scroll-behavior:smooth}body{background:radial-gradient(circle at 70% 0, color-mix(in srgb, var(--hono-accent) 16%, transparent), transparent 24rem), linear-gradient(180deg, var(--hono-bg-soft), var(--hono-bg) 22rem);min-width:320px;color:var(--hono-text);font-family:var(--hono-font-sans);margin:0;line-height:1.6}a{color:inherit}.hn-site{flex-direction:column;min-height:100vh;display:flex}.hn-skip{z-index:999;background:var(--hono-accent);color:var(--hono-accent-ink);border-radius:.75rem;padding:.55rem .85rem;font-weight:700;position:absolute;left:-9999px}.hn-skip:focus{top:1rem;left:1rem}.hn-header{z-index:50;border-bottom:1px solid var(--hono-line);background:color-mix(in srgb, var(--hono-bg) 88%, transparent);-webkit-backdrop-filter:blur(18px);backdrop-filter:blur(18px);position:sticky;top:0}.hn-header-inner{justify-content:space-between;align-items:center;gap:1rem;width:min(1180px,100% - 2rem);min-height:4.25rem;margin:0 auto;display:flex}.hn-brand,.hn-logo{color:var(--hono-text-strong);align-items:center;gap:.7rem;font-weight:800;text-decoration:none;display:inline-flex}.hn-logo svg{width:2rem;height:2rem;color:var(--hono-accent)}.hn-header-actions{align-items:center;gap:.75rem;display:flex}.hn-nav{align-items:center;gap:.15rem;display:flex}.hn-nav a,.hn-locale-switcher summary,.hn-theme-toggle,.hn-social a{min-height:2.25rem;color:var(--hono-muted);border-radius:999px;text-decoration:none}.hn-nav a{align-items:center;padding:0 .8rem;font-size:.93rem;font-weight:650;display:inline-flex}.hn-nav a:hover,.hn-nav a.active,.hn-locale-switcher summary:hover,.hn-social a:hover{background:var(--hono-panel-strong);color:var(--hono-text-strong)}.hn-social{align-items:center;display:flex}.hn-social a{justify-content:center;align-items:center;width:2.25rem;display:inline-flex}.hn-social svg{width:1.1rem;height:1.1rem;display:block}.hn-locale-switcher{position:relative}.hn-locale-switcher summary{cursor:pointer;align-items:center;padding:0 .75rem;font-size:.9rem;font-weight:650;list-style:none;display:inline-flex}.hn-locale-switcher summary::-webkit-details-marker{display:none}.hn-locale-menu{border:1px solid var(--hono-line);background:var(--hono-bg-soft);min-width:10rem;box-shadow:var(--hono-shadow);border-radius:.9rem;padding:.45rem;position:absolute;top:calc(100% + .55rem);right:0}.hn-locale-menu a{color:var(--hono-muted);border-radius:.65rem;padding:.45rem .65rem;font-size:.9rem;text-decoration:none;display:block}.hn-locale-menu a:hover,.hn-locale-menu a.active{background:var(--hono-panel-strong);color:var(--hono-text-strong)}.hn-theme-toggle{cursor:pointer;background:0 0;border:0;place-items:center;width:2.25rem;display:inline-grid}.hn-theme-toggle:hover{background:var(--hono-panel-strong);color:var(--hono-text-strong)}:root[data-theme=light] .hn-theme-toggle-sun,:root:not([data-theme=light]) .hn-theme-toggle-moon{display:none}.hn-home-main{flex:1;width:min(1180px,100% - 2rem);margin:0 auto}.hn-home-content{padding:clamp(3rem,8vw,6.5rem) 0 4rem}.hn-hero{grid-template-columns:minmax(0,1fr) minmax(18rem,.9fr);align-items:center;gap:clamp(2rem,6vw,5rem);min-height:34rem;display:grid;position:relative}.hn-hero-glow{background:color-mix(in srgb, var(--hono-accent) 18%, transparent);filter:blur(70px);pointer-events:none;border-radius:999px;width:22rem;height:22rem;position:absolute;inset:auto 12% 4rem auto}.hn-hero-copy,.hn-hero-code{position:relative}.hn-hero-eyebrow{border:1px solid color-mix(in srgb, var(--hono-accent) 45%, var(--hono-line));color:var(--hono-accent-strong);background:color-mix(in srgb, var(--hono-accent) 10%, transparent);letter-spacing:.08em;text-transform:uppercase;border-radius:999px;margin:0 0 1.2rem;padding:.38rem .75rem;font-size:.78rem;font-weight:800;display:inline-flex}.hn-hero h1{max-width:12ch;color:var(--hono-text-strong);letter-spacing:-.07em;margin:0;font-size:clamp(3rem,8vw,5.7rem);line-height:.94}.hn-hero-subtitle{max-width:42rem;color:var(--hono-muted);margin:1.4rem 0 0;font-size:clamp(1.05rem,2vw,1.3rem)}.hn-hero-actions{flex-wrap:wrap;gap:.8rem;margin-top:2rem;display:flex}.hn-button{border-radius:999px;justify-content:center;align-items:center;min-height:2.85rem;padding:0 1.1rem;font-weight:800;text-decoration:none;display:inline-flex}.hn-button-brand{background:var(--hono-accent);color:var(--hono-accent-ink);box-shadow:0 12px 38px color-mix(in srgb, var(--hono-accent) 28%, transparent)}.hn-button-brand:hover{background:var(--hono-accent-strong)}.hn-button-alt{border:1px solid var(--hono-line-strong);background:var(--hono-panel);color:var(--hono-text-strong)}.hn-button-alt:hover{background:var(--hono-panel-strong)}.hn-code-card{border:1px solid var(--hono-line);border-radius:calc(var(--hono-radius) + .35rem);background:var(--hono-code-bg);color:var(--hono-code-text);box-shadow:var(--hono-shadow);overflow:hidden}.hn-code-topbar{border-bottom:1px solid #ffffff14;gap:.45rem;padding:.9rem 1rem;display:flex}.hn-code-topbar span{background:#ff5f56;border-radius:999px;width:.7rem;height:.7rem}.hn-code-topbar span:nth-child(2){background:#ffbd2e}.hn-code-topbar span:nth-child(3){background:#27c93f}.hn-code-card pre{font-family:var(--hono-font-mono);margin:0;padding:1.1rem;font-size:.92rem;line-height:1.75;overflow-x:auto}.hn-code-line{white-space:pre;min-height:1.7em;display:block}.hn-code-keyword{color:#ff9e64}.hn-code-string{color:#9ece6a}.hn-code-plain{color:#c0caf5}.hn-features{grid-template-columns:repeat(4,minmax(0,1fr));gap:1rem;margin-top:2.5rem;display:grid}.hn-feature-card{border:1px solid var(--hono-line);border-radius:var(--hono-radius);background:var(--hono-panel);min-height:16rem;padding:1.4rem}.hn-feature-icon{background:color-mix(in srgb, var(--hono-accent) 16%, transparent);width:2.45rem;height:2.45rem;color:var(--hono-accent-strong);border-radius:.85rem;place-items:center;font-weight:900;display:inline-grid}.hn-feature-card h2{color:var(--hono-text-strong);margin:1.1rem 0 .55rem;font-size:1.08rem;line-height:1.25}.hn-feature-card p{color:var(--hono-muted);margin:0;font-size:.95rem}.hn-doc-shell{flex:1;grid-template-columns:17rem minmax(0,1fr) 14rem;gap:2rem;width:min(1360px,100% - 2rem);margin:0 auto;display:grid}.hn-sidebar,.hn-outline{height:calc(100vh - 4.25rem);padding:2rem 0;position:sticky;top:4.25rem;overflow:auto}.hn-sidebar-panel,.hn-outline-panel{border:1px solid var(--hono-line);border-radius:var(--hono-radius);background:var(--hono-panel);padding:1rem}.hn-search{color:var(--hono-muted);letter-spacing:.06em;text-transform:uppercase;gap:.45rem;margin-bottom:1rem;font-size:.78rem;font-weight:800;display:grid}.hn-search input{border:1px solid var(--hono-line);background:var(--hono-bg);width:100%;min-height:2.4rem;color:var(--hono-text);font:inherit;text-transform:none;letter-spacing:normal;border-radius:.8rem;padding:0 .75rem}.hn-sidebar-group+.hn-sidebar-group{border-top:1px solid var(--hono-line);margin-top:1.25rem;padding-top:1.25rem}.hn-sidebar-group h2,.hn-outline-panel h2{color:var(--hono-muted);letter-spacing:.08em;text-transform:uppercase;margin:0 0 .65rem;font-size:.78rem}.hn-sidebar-group ul,.hn-outline-panel ul,.hn-tags{margin:0;padding:0;list-style:none}.hn-sidebar-group a,.hn-outline-panel a{color:var(--hono-muted);border-radius:.65rem;padding:.42rem .6rem;font-size:.92rem;text-decoration:none;display:block}.hn-sidebar-group a:hover,.hn-sidebar-group a.active,.hn-outline-panel a:hover{background:var(--hono-panel-strong);color:var(--hono-text-strong)}.hn-outline-panel a{padding-left:0}.hn-outline-panel .level-3 a{padding-left:.85rem}.hn-doc-main{min-width:0;padding:2rem 0 4rem}.hn-doc{width:min(100%,760px);margin:0 auto}.hn-doc-title{color:var(--hono-text-strong);letter-spacing:-.055em;margin:0;font-size:clamp(2.2rem,5vw,3.5rem);line-height:1.05}.hn-doc-lead{color:var(--hono-muted);margin:1rem 0 0;font-size:1.12rem}.hn-doc-content{margin-top:2rem}.hn-doc-content :is(h2,h3,h4){color:var(--hono-text-strong);line-height:1.25}.hn-doc-content h2{border-top:1px solid var(--hono-line);margin-top:2.4rem;padding-top:.7rem;font-size:1.7rem}.hn-doc-content h3{margin-top:1.8rem;font-size:1.25rem}.hn-doc-content p,.hn-doc-content li{color:var(--hono-text)}.hn-doc-content a{color:var(--hono-accent-strong);text-underline-offset:.18em;text-decoration-thickness:.08em}.hn-heading{position:relative}.hn-heading-anchor{color:var(--hono-muted);opacity:0;margin-left:.45rem;text-decoration:none}.hn-heading:hover .hn-heading-anchor{opacity:1}.hn-doc-content :is(pre,table){overflow-x:auto}.hn-doc-content pre{border:1px solid var(--hono-line);background:var(--hono-code-bg);border-radius:.9rem;padding:1rem}.hn-doc-content code{font-family:var(--hono-font-mono)}.hn-doc-content :not(pre)>code{background:var(--hono-panel-strong);color:var(--hono-accent-strong);border-radius:.35rem;padding:.15rem .35rem;font-size:.92em}.hn-doc-content blockquote{border-left:3px solid var(--hono-accent);color:var(--hono-muted);background:var(--hono-panel);margin:1.2rem 0;padding:.1rem 1rem}.hn-doc-content table{border-collapse:collapse;width:100%}.hn-doc-content th,.hn-doc-content td{border:1px solid var(--hono-line);text-align:left;padding:.65rem .8rem}.hn-tags{flex-wrap:wrap;gap:.5rem;margin-top:1rem;display:flex}.hn-tags a{border:1px solid var(--hono-line);color:var(--hono-muted);border-radius:999px;padding:.25rem .55rem;font-size:.82rem;text-decoration:none;display:inline-flex}.hn-pager{border-top:1px solid var(--hono-line);grid-template-columns:1fr 1fr;gap:1rem;margin-top:3rem;padding-top:2rem;display:grid}.hn-pager a{border:1px solid var(--hono-line);color:var(--hono-text-strong);background:var(--hono-panel);border-radius:.9rem;gap:.2rem;padding:1rem;text-decoration:none;display:grid}.hn-pager a:hover{background:var(--hono-panel-strong)}.hn-pager span{color:var(--hono-muted);font-size:.82rem}.hn-pager .next{text-align:right}.hn-doc-meta,.hn-footer{color:var(--hono-muted);font-size:.9rem}.hn-doc-meta{margin-top:1.6rem}.hn-footer{border-top:1px solid var(--hono-line);width:min(1180px,100% - 2rem);margin:auto auto 0;padding:2rem 0}@media (width<=1080px){.hn-doc-shell{grid-template-columns:16rem minmax(0,1fr)}.hn-outline{display:none}.hn-features{grid-template-columns:repeat(2,minmax(0,1fr))}}@media (width<=820px){.hn-header-inner{flex-direction:column;align-items:flex-start;padding:.9rem 0}.hn-header-actions{flex-wrap:wrap;width:100%}.hn-nav{order:3;width:100%;overflow-x:auto}.hn-hero{grid-template-columns:1fr;min-height:auto}.hn-doc-shell{display:block}.hn-sidebar{height:auto;padding:1rem 0 0;position:static}.hn-doc-main{padding-top:1.5rem}}@media (width<=620px){.hn-home-main,.hn-doc-shell,.hn-header-inner,.hn-footer{width:min(100% - 1rem,1180px)}.hn-hero h1{font-size:3rem}.hn-features,.hn-pager{grid-template-columns:1fr}.hn-feature-card{min-height:auto}}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="de">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8">
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
|
+
<title>Über uns | Hono Starter</title>
|
|
7
|
+
<script src="/preactpress-theme.js"></script>
|
|
8
|
+
<meta name="description" content="Über diese Website">
|
|
9
|
+
<meta property="og:title" content="Über uns | Hono Starter">
|
|
10
|
+
<meta property="og:description" content="Über diese Website">
|
|
11
|
+
<meta property="og:type" content="website">
|
|
12
|
+
<meta property="og:url" content="/de/about/">
|
|
13
|
+
<meta name="twitter:card" content="summary">
|
|
14
|
+
<meta name="twitter:title" content="Über uns | Hono Starter">
|
|
15
|
+
<meta name="twitter:description" content="Über diese Website">
|
|
16
|
+
<link rel="canonical" href="/de/about/">
|
|
17
|
+
<script type="application/ld+json">{"@context":"https://schema.org","@type":"WebPage","headline":"Über uns | Hono Starter","name":"Über uns | Hono Starter","description":"Über diese Website","url":"/de/about/","dateModified":"2026-06-04T07:28:10.783Z"}</script>
|
|
18
|
+
<link rel="icon" href="/favicon.svg" type="image/svg+xml">
|
|
19
|
+
<link rel="icon" href="/favicon-32.png" type="image/png" sizes="32x32">
|
|
20
|
+
<link rel="icon" href="/favicon.png" type="image/png" sizes="any">
|
|
21
|
+
<link rel="apple-touch-icon" href="/favicon.png">
|
|
22
|
+
<link rel="stylesheet" crossorigin href="/assets/main-DIIN7FO0.css">
|
|
23
|
+
</head>
|
|
24
|
+
<body>
|
|
25
|
+
<template id="__PREACTPRESS_PAGE_DATA__">{"kind":"markdown","meta":{"title":"Über uns","description":"Über diese Website"},"html":"\u003ch1 id=\"ber-uns\" class=\"pp-heading\">Über uns\u003ca class=\"pp-heading-anchor\" href=\"#ber-uns\" aria-label=\"Link to this section\">#\u003c/a>\u003c/h1>\n\u003cp>Hier steht dein Inhalt.\u003c/p>\n\u003cp>Diese Seite wurde im Tutorial \u003ca href=\"/de/guide/first-five-minutes\">Die ersten 5 Minuten\u003c/a> hinzugefügt. Ersetze diesen Text durch deine eigenen Inhalte — Teamvorstellung, Projektziel, Kontaktinformationen oder alles, was auf eine Über-uns-Seite gehört.\u003c/p>\n","title":"Über uns","description":"Über diese Website","tags":[],"pageType":"website","headings":[],"relativePath":"de/about.md","lastUpdated":"2026-06-04T07:28:10.783Z"}</template>
|
|
26
|
+
<div id="app"><div class="hn-site"><a class="hn-skip" href="#content">Skip to content</a><header class="hn-header"><div class="hn-header-inner"><a class="hn-brand" href="/de" aria-label="Hono Starter"><span class="hn-logo" aria-label="Hono Starter"><svg aria-hidden="true" viewBox="0 0 36 36" width="36" height="36"><rect width="36" height="36" rx="11" fill="currentColor" opacity="0.12"></rect><path d="M19.8 5.5c.8 4-2.8 5.9-4.7 8.2-1.8 2.1-2.5 4.9-.3 7 0-2.8 1.7-4.6 4.2-6.7 3.2 3 5.3 5.8 5.3 9.2 0 4.4-3.3 7.3-7.6 7.3-4.8 0-8.3-3.6-8.3-8.4 0-6.1 6.3-9.2 11.4-16.6Z" fill="currentColor"></path><path d="M21.7 25.7c0 2.2-1.7 3.8-3.9 3.8s-4-1.6-4-3.8c0-1.7 1-3.1 3.4-5.2.1 1.7 1.4 2.6 2.4 3.4.8.6 2.1 1 2.1 1.8Z" fill="currentColor" opacity="0.38"></path></svg><span>Hono Starter</span></span></a><div class="hn-header-actions"><nav class="hn-nav" aria-label="Main navigation"><a class href="/de/guide/what-is-preactpress">Docs</a><a class href="/de/markdown-examples">Beispiele</a><a class="active" href="/de/about" aria-current="page">Über uns</a></nav><div class="hn-social" aria-label="Social links"><a href="https://github.com/your-org/your-project" aria-label="GitHub"><span><svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>GitHub</title><path fill="currentColor" d="M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.404 1.02.005 2.04.137 3 .404 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12"/></svg></span></a></div><details class="hn-locale-switcher"><summary>Deutsch</summary><div class="hn-locale-menu"><a href="/about" class>English</a><a href="/de/about" aria-current="page" class="active">Deutsch</a></div></details><button type="button" class="hn-theme-toggle" aria-label="Toggle theme"><span class="hn-theme-toggle-moon" aria-hidden="true"><svg viewBox="0 0 24 24" width="18" height="18" fill="none" stroke="currentColor"><path d="M21 14.8A8.5 8.5 0 0 1 9.2 3a7 7 0 1 0 11.8 11.8Z" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.7"></path></svg></span><span class="hn-theme-toggle-sun" aria-hidden="true"><svg viewBox="0 0 24 24" width="18" height="18" fill="none" stroke="currentColor"><circle cx="12" cy="12" r="3.5" stroke-width="1.7"></circle><path d="M12 2.5v2M12 19.5v2M4.6 4.6 6 6M18 18l1.4 1.4M2.5 12h2M19.5 12h2M4.6 19.4 6 18M18 6l1.4-1.4" stroke-linecap="round" stroke-width="1.7"></path></svg></span></button></div></div></header><div class="hn-doc-shell"><aside class="hn-sidebar" aria-label="Documentation navigation"><div class="hn-sidebar-panel"><label class="hn-search"><span>Search pages</span><input type="search" value placeholder="Filter documentation..."/></label><div class="hn-sidebar-group"><h2>Einführung</h2><ul><li><a class="active" href="/de" aria-current="page">Willkommen</a></li><li><a class href="/de/guide/what-is-preactpress">Was ist PreactPress?</a></li><li><a class href="/de/guide/getting-started">Getting Started</a></li><li><a class href="/de/guide/routing">Routing</a></li><li><a class href="/de/guide/deploy">Deploy</a></li><li><a class href="/de/guide/first-five-minutes">Die ersten 5 Minuten</a></li><li><a class href="/de/guide/seiten-erstellen">Seiten erstellen</a></li><li><a class href="/de/guide/commands">Befehle</a></li><li><a class href="/de/guide/configuration">Konfiguration</a></li></ul></div><div class="hn-sidebar-group"><h2>Referenz</h2><ul><li><a class href="/de/markdown-examples">Markdown-Beispiele</a></li><li><a class href="/de/interactive">Interaktives MDX</a></li></ul></div></div></aside><main id="content" class="hn-doc-main"><article class="hn-doc"><h1 class="hn-doc-title">Über uns</h1><p class="hn-doc-lead">Über diese Website</p><div class="hn-doc-content"><h1 id="ber-uns" class="pp-heading">Über uns<a class="pp-heading-anchor" href="#ber-uns" aria-label="Link to this section">#</a></h1>
|
|
27
|
+
<p>Hier steht dein Inhalt.</p>
|
|
28
|
+
<p>Diese Seite wurde im Tutorial <a href="/de/guide/first-five-minutes">Die ersten 5 Minuten</a> hinzugefügt. Ersetze diesen Text durch deine eigenen Inhalte — Teamvorstellung, Projektziel, Kontaktinformationen oder alles, was auf eine Über-uns-Seite gehört.</p>
|
|
29
|
+
</div><nav class="hn-pager" aria-label="Page navigation"><span></span><a class="next" href="/de/guide/what-is-preactpress"><span>Next</span>Was ist PreactPress?</a></nav><footer class="hn-doc-meta"><span>Updated 4. Juni 2026</span></footer></article></main></div><footer class="hn-footer">Erstellt mit PreactPress.</footer></div></div>
|
|
30
|
+
<script type="module" crossorigin src="/assets/main-Bqi-VFEk.js"></script>
|
|
31
|
+
</body>
|
|
32
|
+
</html>
|