programming language description

The description pops up in search results, other things use the name Roc so we should clarify.

Signed-off-by: Anton-4 <17049058+Anton-4@users.noreply.github.com>
This commit is contained in:
Anton-4 2024-05-10 16:44:09 +02:00 committed by GitHub
parent 49415f67af
commit 37f97f5a8e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -9,21 +9,21 @@ app "roc-website"
pageData =
Dict.empty {}
|> Dict.insert "abilities.html" { title: "Abilities | Roc", description: "Learn about abilities in Roc." }
|> Dict.insert "bdfn.html" { title: "Governance | Roc", description: "Learn about Roc's governance model." }
|> Dict.insert "community.html" { title: "Community | Roc", description: "Connect with the Roc community." }
|> Dict.insert "docs.html" { title: "Docs | Roc", description: "Documentation for Roc, including builtins." }
|> Dict.insert "donate.html" { title: "Donate | Roc", description: "Support Roc by donating or sponsoring." }
|> Dict.insert "faq.html" { title: "FAQ | Roc", description: "Frequently asked questions about Roc." }
|> Dict.insert "abilities.html" { title: "Abilities | Roc", description: "Learn about abilities in the Roc programming language." }
|> Dict.insert "bdfn.html" { title: "Governance | Roc", description: "Learn about the governance model of the Roc programming language." }
|> Dict.insert "community.html" { title: "Community | Roc", description: "Connect with the community of the Roc programming language." }
|> Dict.insert "docs.html" { title: "Docs | Roc", description: "Documentation for the Roc programming language, including builtins." }
|> Dict.insert "donate.html" { title: "Donate | Roc", description: "Support the Roc programming language by donating or sponsoring." }
|> Dict.insert "faq.html" { title: "FAQ | Roc", description: "Frequently asked questions about the Roc programming language." }
|> Dict.insert "fast.html" { title: "Fast | Roc", description: "What does it mean that the Roc programming language is fast?" }
|> Dict.insert "friendly.html" { title: "Friendly | Roc", description: "What does it mean that the Roc programming language is friendly?" }
|> Dict.insert "functional.html" { title: "Functional | Roc", description: "What does it mean that the Roc programming language is functional?" }
|> Dict.insert "index.html" { title: "The Roc Programming Language", description: "A fast, friendly, functional language." }
|> Dict.insert "install.html" { title: "Install | Roc", description: "How to install Roc." }
|> Dict.insert "plans.html" { title: "Planned Changes | Roc", description: "Planned changes to Roc." }
|> Dict.insert "platforms.html" { title: "Platforms and Apps | Roc", description: "Learn about the platforms and applications architecture." }
|> Dict.insert "install.html" { title: "Install | Roc", description: "How to install the Roc programming language." }
|> Dict.insert "plans.html" { title: "Planned Changes | Roc", description: "Planned changes to the Roc programming language." }
|> Dict.insert "platforms.html" { title: "Platforms and Apps | Roc", description: "Learn about the platforms and applications architecture in the Roc programming language." }
|> Dict.insert "tutorial.html" { title: "Tutorial | Roc", description: "Learn the Roc programming language." }
|> Dict.insert "repl/index.html" { title: "REPL | Roc", description: "Try Roc in an online REPL." }
|> Dict.insert "repl/index.html" { title: "REPL | Roc", description: "Try the Roc programming language in an online REPL." }
getPage : Str -> { title : Str, description : Str }
getPage = \current ->