From 091be68d423d77d0f736f66950221d86a3423ec4 Mon Sep 17 00:00:00 2001 From: lovasoa Date: Fri, 1 Sep 2023 10:27:06 +0200 Subject: [PATCH] fix hosted page --- .../your-first-sql-website/hosted.sql | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/examples/official-site/your-first-sql-website/hosted.sql b/examples/official-site/your-first-sql-website/hosted.sql index a568286f..e7ff7360 100644 --- a/examples/official-site/your-first-sql-website/hosted.sql +++ b/examples/official-site/your-first-sql-website/hosted.sql @@ -10,9 +10,19 @@ select 'shell' as component, SELECT 'hero' as component, 'Hosted SQLPage' as title, 'Work In Progress: We are working on a cloud version of SQLPage - that will enable you to effortlessly set up your website online without the need to download any software or configure your own server. - - In the meantime, you can already [try SQLPage online on repl.it](https://replit.com/@pimaj62145/SQLPage#index.sql)' as description, + that will enable you to effortlessly set up your website online without the need to download any software or configure your own server.' as description, 'https://upload.wikimedia.org/wikipedia/commons/thumb/9/94/Baustelle_H%C3%B6lzla_6066312.jpg/1024px-Baustelle_H%C3%B6lzla_6066312.jpg' as image, 'https://forms.gle/z1qmuCwdNT5Am7gp6' as link, - 'Get notified when we are ready' as link_text; \ No newline at end of file + 'Get notified when we are ready' as link_text; + +SELECT 'text' as component, + 'Try SQLPage online today' as title, + ' +If you want to fiddle around with SQLPage without installing anything on your computer, you can still try it out online today. + +Repl.it is an online development environment that allows you to run SQLPage in your browser. + +Try [the SQLPage repl](https://replit.com/@pimaj62145/SQLPage). +Click *Use template* to create your own editable copy of the demo website, then click *Run* to see the result. +On the left side you can edit the SQLPage code, on the right side you can see the result. +' as contents_md; \ No newline at end of file