Skip to content

Commit 2fc6b05

Browse files
committed
dashboards
1 parent f3a46cd commit 2fc6b05

File tree

2 files changed

+30
-12
lines changed

2 files changed

+30
-12
lines changed
93.6 KB
Loading

examples/official-site/sqlpage/templates/shell-home.handlebars

Lines changed: 30 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -616,7 +616,7 @@
616616
gap: 3rem;
617617
}
618618
619-
#features h2 {
619+
#features .gradient-title {
620620
font-size: 3.5rem;
621621
margin-bottom: 1rem;
622622
background: linear-gradient(135deg, #ffffff 0%, #e1e1e1 100%);
@@ -749,7 +749,7 @@
749749
max-width: 500px;
750750
}
751751
752-
.feature-content h2 {
752+
.feature-content .gradient-title {
753753
font-size: 2.5rem;
754754
margin-bottom: 1.5rem;
755755
background: var(--gradient-primary);
@@ -775,7 +775,8 @@
775775
transform: translateY(-10px);
776776
}
777777
778-
.feature-image img, .feature-image video {
778+
.feature-image img,
779+
.feature-image video {
779780
width: 100%;
780781
object-fit: cover;
781782
object-position: left;
@@ -787,7 +788,7 @@
787788
grid-template-columns: 1fr;
788789
text-align: center;
789790
}
790-
791+
791792
.feature-content {
792793
max-width: 100%;
793794
}
@@ -904,6 +905,18 @@
904905
background-position: -400% 0;
905906
}
906907
}
908+
909+
.dynamic-title {
910+
font-size: 2.5rem;
911+
background: linear-gradient(135deg, rgba(231, 131, 211, 0.95) 0%, rgba(221, 22, 22, 0.85) 100%);
912+
-webkit-background-clip: text;
913+
background-clip: text;
914+
color: transparent;
915+
text-shadow:
916+
0 1px 1px rgba(0, 0, 0, 0.2),
917+
0 -1px 1px rgba(255, 255, 255, 0.1);
918+
position: relative;
919+
}
907920
</style>
908921
</head>
909922

@@ -974,32 +987,37 @@
974987
<section class="feature-section">
975988
<div class="container">
976989
<div class="feature-content">
977-
<h2>More scalable than a spreadsheet</h2>
978-
<p>SQL queries sort, filter, and aggregate millions of rows in milliseconds. No more slow spreadsheet formulas or memory limitations. Your app remains smooth and responsive even as your data grows.</p>
990+
<h2 class="gradient-title">More scalable than a spreadsheet</h2>
991+
<p>SQL queries sort, filter, and aggregate millions of rows in milliseconds. No more slow spreadsheet
992+
formulas or memory limitations. Your app remains smooth and responsive even as your data grows.</p>
979993
</div>
980994
<div class="feature-image">
981-
<video src="/assets/screenshots/big_tables.webm" alt="SQLPage displaying large tables" width="600" height="400" autoplay loop muted playsinline></video>
995+
<video src="/assets/screenshots/big_tables.webm" alt="SQLPage displaying large tables" width="600"
996+
height="400" autoplay loop muted playsinline></video>
982997
</div>
983998
</div>
984999
</section>
9851000

9861001
<section class="feature-section">
9871002
<div class="container">
9881003
<div class="feature-content">
989-
<h2>More dynamic than a dashboard</h2>
990-
<p>Build multi-page applications with drill-down capabilities. Navigate from summaries to detailed records. Full CRUD operations support viewing, editing, and analyzing your data.</p>
1004+
<h2 class="dynamic-title">More dynamic than a dashboard</h2>
1005+
<p>Build multi-page applications with drill-down capabilities. Navigate from summaries to detailed
1006+
records. Comment, edit, and dive into your data instead of just looking at static numbers.</p>
9911007
</div>
9921008
<div class="feature-image">
993-
<video src="/assets/screenshots/big_tables.webm" alt="Interactive Dashboard" width="600" height="400"></video>
1009+
<img src="/assets/screenshots/user-creation-form.png" alt="User creation form, illustrating the ability to create, edit, and delete individual data points, to go beyond simple static dashboards."
1010+
width="600" height="400">
9941011
</div>
9951012
</div>
9961013
</section>
9971014

9981015
<section class="feature-section">
9991016
<div class="container">
10001017
<div class="feature-content">
1001-
<h2>The power of the web, without the complexity</h2>
1002-
<p>Write SQL, get a web app. No need for complex frameworks or multiple languages. Optional HTML/CSS/JS customization available. REST API compatible for integration with external services.</p>
1018+
<h2 class="gradient-title">The power of the web, without the complexity</h2>
1019+
<p>Write SQL, get a web app. No need for complex frameworks or multiple languages. Optional HTML/CSS/JS
1020+
customization available. REST API compatible for integration with external services.</p>
10031021
</div>
10041022
<div class="feature-image">
10051023
<img src="/assets/feature-simple.webp" alt="Simple Web Development" width="600" height="400">

0 commit comments

Comments
 (0)