This commit is contained in:
2025-06-29 22:58:33 +00:00
parent 0ad46c1ed5
commit 0f0764564b
9 changed files with 241 additions and 127 deletions

View File

@@ -0,0 +1,25 @@
import { html } from '@design.estate/dees-element';
export const demoFunc = () => html`
<style>
.demo-container {
background: #fafafa;
padding: 40px 0;
min-height: 400px;
}
</style>
<div class="demo-container">
<upl-statuspage-pagetitle
.pageTitle=${'System Status'}
.pageSubtitle=${'Real-time operational status and incident reports for all services'}
></upl-statuspage-pagetitle>
<br>
<upl-statuspage-pagetitle
.pageTitle=${'API Documentation'}
.pageSubtitle=${'Comprehensive guides and references for integrating with our platform'}
.centered=${true}
></upl-statuspage-pagetitle>
</div>
`;