Skip to content

Commit b50167b

Browse files
committed
link to editor from official website
1 parent 0e7d130 commit b50167b

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

examples/official-site/index.sql

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,20 +29,20 @@ No design skills are required, yet your website will be responsive, and look pro
2929
'green' as color;
3030
SELECT 'Fast' as title,
3131
'Pages [load instantly](performance.sql), even on slow mobile networks.
32-
SQLPage is designed as a single **lightweight** executable, ensuring fast performance even on low-cost servers.' as description_md,
32+
SQLPage is designed as a single **lightweight** executable leveraging server-side rendering to ensure fast page loads even on low-cost servers.' as description_md,
3333
'mail-fast' as icon,
3434
'red' as color;
3535

3636
SELECT 'hero' as component,
3737
true as reverse,
38-
'🧩 Easy User Interface' as title,
38+
'🧩 SQL User Interfaces' as title,
3939
'At the core of SQLPage is a [rich library of user interface components](/documentation.sql) for tables, charts, maps, timelines, forms and much more.
4040
4141
To build your app, you just populate the components with data returned by your database queries.' as description_md,
4242
'sqlpage_illustration_components.webp' as image;
4343

4444
SELECT 'hero' as component,
45-
'🪄 Automatic' as title,
45+
'🪄 Seamless' as title,
4646
'SQLPage handles HTTP requests, database connections, streaming rendering, styling, [security](safety.sql), and [performance](performance.sql) for you.
4747
4848
Focus only on your data, and how you want to present it. We''ve tamed the tech, you tame the data.' as description_md,

examples/official-site/your-first-sql-website/index.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ SELECT 'alert' as component,
4141
'teal' as color,
4242
'You don’t want to have anything to do with scary hacker things ?
4343
You can use a preconfigured SQLPage hosted on our servers, and **never have to configure a server** yourself.' as description_md,
44-
'https://replit.com/@pimaj62145/SQLPage#index.sql' AS link,
44+
'https://editor.datapage.app' AS link,
4545
'Try SQLPage from your browser' as link_text;
4646
select 'https://datapage.app' as link, 'Host your app on our servers' as title, 'teal' as color;
4747
SELECT 'alert' as component,

examples/official-site/your-first-sql-website/migrations.sql

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,6 @@ select 'http_header' as component,
44
select 'dynamic' as component, properties FROM example WHERE component = 'shell' LIMIT 1;
55

66
-- Article by Matthew Larkin
7-
select 'text' as component, sqlpage.read_file_as_text('your-first-sql-website/migrations.md') as contents_md;
7+
select 'text' as component,
8+
sqlpage.read_file_as_text('your-first-sql-website/migrations.md') as contents_md,
9+
true as article;

examples/official-site/your-first-sql-website/tutorial-install-any.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Download SQLPage (the SQL website builder)
1+
# Download SQLPage
22

33
SQLPage is a small single-file program that will
44
execute the SQL files you write,

0 commit comments

Comments
 (0)