Skip to content

Commit

Permalink
s/sandbox/playground/
Browse files Browse the repository at this point in the history
  • Loading branch information
prasmussen committed Aug 5, 2024
1 parent 17e7963 commit 3ec07df
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions glot_core/src/page/home_page.rs
Original file line number Diff line number Diff line change
Expand Up @@ -137,10 +137,10 @@ pub enum Msg {
pub enum AppEffect {}

fn view_head(model: &Model) -> maud::Markup {
let description = format!("glot.io is an open source code sandbox for running and sharing code snippets. Currently supports {} different programming languages.", model.languages.len());
let description = format!("glot.io is an open source code playground for running and sharing code snippets. Currently supports {} different programming languages.", model.languages.len());

html! {
title { "glot.io - code sandbox" }
title { "glot.io - code playground" }
meta name="description" content=(description);
meta name="viewport" content="width=device-width, initial-scale=1";
link rel="stylesheet" href="/static/app.css?hash=checksum";
Expand Down Expand Up @@ -175,7 +175,7 @@ fn view_content(model: &Model) -> Markup {
a href="https://github.com/glotcode/glot" class="underline hover:no-underline text-gray-200 hover:text-gray-400 visited:text-purple-400" {
"open source"
}
span { " code sandbox." }
span { " code playground." }
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion glot_core/src/page/snippet_page.rs
Original file line number Diff line number Diff line change
Expand Up @@ -632,7 +632,7 @@ pub struct RunRequestPayload {

fn view_head(model: &Model) -> maud::Markup {
let language_config = model.language.config();
let description = format!("Run and share {} snippets", language_config.name);
let description = format!("{} playground - glot.io", language_config.name);

html! {
title { (model.title) " - " (language_config.name) " snippet" }
Expand Down

0 comments on commit 3ec07df

Please sign in to comment.