@@ -31,6 +31,21 @@ SELECT 'Fast' as title,
3131 ' mail-fast' as icon,
3232 ' red' as color;
3333
34+ SELECT ' hero' as component,
35+ true as reverse,
36+ ' 🧩 Batteries included' as title,
37+ ' At the core of SQLPage is a [rich library of components](/documentation.sql) for tables, charts, maps, tables, forms and much more.
38+
39+ You just populate the components with data returned by your database queries.' as description_md,
40+ ' sqlpage_illustration_components.webp' as image;
41+
42+ SELECT ' hero' as component,
43+ ' 🪄 We did the hard part' as title,
44+ ' SQLPage handles HTTP requests, database connections, streaming rendering, styling, [security](safety.sql), and [performance](performance.sql) for you.
45+
46+ Focus only on your data, and how you want to present it. We' ' ve tamed the tech, you tame the data.' as description_md,
47+ ' sqlpage_illustration_alien.webp' as image;
48+
3449-- Quick feature overview
3550SELECT ' card' as component,
3651 ' What is SQLPage ?' as title,
@@ -117,12 +132,36 @@ SELECT 'SQLPage Documentation' as title,
117132 ' List of all available components, with examples of how to use them.' as description,
118133 ' purple' as color,
119134 ' book' as icon;
120- SELECT ' Examples' as title,
135+ SELECT ' Technical documentation on Github' as title,
136+ ' https://github.com/lovasoa/SQLpage/blob/main/README.md#sqlpage' as link,
137+ ' The official README file on Github contains instructions to get started using SQLPage.' as description,
138+ ' yellow' as color,
139+ ' file-text' as icon;
140+ SELECT ' Youtube Video Series' as title,
141+ ' https://www.youtube.com/playlist?list=PLTue_qIAHxAf9fEjBY2CN0N_5XOiffOk_' as link,
142+ ' A series of video tutorials that will guide you through the creation of an application with SQLPage.' as description,
143+ ' red' as color,
144+ ' brand-youtube' as icon;
145+ SELECT ' Learnsqlpage.com' as title,
146+ ' https://learnsqlpage.com' as link,
147+ ' A website dedicated to learning SQLPage, with detailed tutorials.' as description,
148+ ' blue' as color,
149+ ' globe' as icon;
150+
151+ SELECT ' list' as component, ' Examples' as title;
152+ SELECT ' Github Examples' as title,
121153 ' https://github.com/lovasoa/SQLpage/tree/main/examples/' as link,
122154 ' SQL source code for examples and demos of websites built with SQLPage.' as description,
123155 ' teal' as color,
124156 ' code' as icon;
125- SELECT ' Community' as title,
157+ SELECT ' Corporate Conundrum' as title,
158+ ' https://conundrum.ophir.dev' as link,
159+ ' A demo web application powered by SQLPage, designed for playing a fun trivia board game with friends.' as description,
160+ ' cyan' as color,
161+ ' affiliate' as icon;
162+
163+ SELECT ' list' as component, ' Community' as title;
164+ SELECT ' Discussion forum' as title,
126165 ' https://github.com/lovasoa/SQLpage/discussions' as link,
127166 ' Come to our community page to discuss SQLPage with other users and ask questions.' as description,
128167 ' pink' as color,
@@ -133,26 +172,11 @@ SELECT 'Source code' as title,
133172 ' The rust source code for SQLPage itself is open and available on Github.' as description,
134173 ' github' as color,
135174 ' brand-github' as icon;
136- SELECT ' Technical documentation on Github' as title,
137- ' https://github.com/lovasoa/SQLpage/blob/main/README.md#sqlpage' as link,
138- ' The official README file on Github contains instructions to get started using SQLPage.' as description,
139- ' yellow' as color,
140- ' file-text' as icon;
141175SELECT ' Report a bug, make a suggestion' as title,
142176 ' https://github.com/lovasoa/SQLPage/issues' as link,
143177 ' If you have a question, a suggestion, or if you found a bug, please open an issue on Github.' as description,
144178 ' red' as color,
145179 ' bug' as icon;
146- SELECT ' Official website' as title,
147- ' https://sql.ophir.dev' as link,
148- ' The project' ' s official home page.' as description,
149- ' blue' as color,
150- ' home' as icon;
151- SELECT ' Corporate Conundrum' as title,
152- ' https://conundrum.ophir.dev' as link,
153- ' A demo web application powered by SQLPage, designed for playing a fun trivia board game with friends.' as description,
154- ' cyan' as color,
155- ' affiliate' as icon;
156180
157181-- User personas: who is SQLPage for ?
158182SELECT ' card' as component,
0 commit comments