From b42232fcbcc6702b6fde0531033b8fdd34747c63 Mon Sep 17 00:00:00 2001 From: Roomote Date: Fri, 13 Mar 2026 18:20:43 +0000 Subject: [PATCH] feat: set preview background to red --- sinatra_app.rb | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/sinatra_app.rb b/sinatra_app.rb index fba6dee..b252603 100644 --- a/sinatra_app.rb +++ b/sinatra_app.rb @@ -9,5 +9,17 @@ set :port, options[:port] || 3001 get "/" do - "hello" + <<~HTML + + + + + + Preview + + + hello + + + HTML end