Skip to content

Commit 2b32a82

Browse files
author
Laegel
authored
fix: Changed tagline (tauri-apps#105)
* fix: Changed tagline * fix: Removed 'native' where it wasn't relevant
1 parent 94995cc commit 2b32a82

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

docs/about/book.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ All tutorial subscription tiers receive the rolling PDF free of additional charg
2727

2828
In 2020, the manufacture of native-apps has become easier and more accessible than ever before. All the same, beginners and seasoned developers alike are confronted with tough choices in a rapidly changing landscape of security and privacy. This is especially true in the semi-trusted environment of user devices.
2929

30-
Tauri takes the guesswork out of the equation, as it was designed from the ground up to embrace new paradigms of secure development and creative flexibility that leverage the language features of Rust and lets you build an app using any frontend framework you like. Find out how you can design, build, audit and deploy tiny, fast, robust, and secure native applications for the major Desktop and Mobile platforms, all from the exact same codebase and in record time - without even needing to know the Rust programming language.
30+
Tauri takes the guesswork out of the equation, as it was designed from the ground up to embrace new paradigms of secure development and creative flexibility that leverage the language features of Rust and lets you build an app using any frontend framework you like. Find out how you can design, build, audit and deploy tiny, fast, robust, and secure applications for the major Desktop and Mobile platforms, all from the exact same codebase and in record time - without even needing to know the Rust programming language.
3131

3232
Authors Daniel and Lucas, the architects behind Tauri take you on a journey from theory to execution, during which you will learn why Tauri was built and how it works under the hood. Together with guest personalities that specialize in OpenSource, DevOps, Security and Enterprise Architecture, this book also presents discourse-formated philosophical discussions and open-source sustainability viewpoints from which your next-gen apps will profit - and your users will benefit.
3333

docs/getting-started/technical-details.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ The bundler combines your HTML/JS/CSS, native Rust code, and the Tauri Rust Crat
3232

3333
> Rust is blazingly fast and memory-efficient: with no runtime or garbage collector, it can power performance-critical services, run on embedded devices, and easily integrate with other languages. Rust’s rich type system and ownership model guarantee memory-safety and thread-safety — and enable you to eliminate many classes of bugs at compile-time. Rust has great documentation, a friendly compiler with useful error messages, and top-notch tooling — an integrated package manager and build tool, smart multi-editor support with auto-completion and type inspections, an auto-formatter, and more. - [https://www.rust-lang.org/](https://www.rust-lang.org/)
3434
35-
This combination of power, safety and usability are why we chose Rust to be the default binding for Tauri. It is our intention to provide the most safe and performant native app experience (for devs and app consumers), out of the box.
35+
This combination of power, safety and usability are why we chose Rust to be the default binding for Tauri. It is our intention to provide the most safe and performant app experience (for devs and app consumers), out of the box.
3636

3737
If you want a deep and rather nerdy look into Rust, check out what insider Tony Arcieri has to say in his article, [Rust in 2019. Security, maturity, stability](https://tonyarcieri.com/rust-in-2019-security-maturity-stability).
3838

docusaurus.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const repoUrl = 'https://github.com/tauri-apps/tauri'
44

55
const siteConfig = {
66
title: 'Tauri Studio',
7-
tagline: 'Make smaller, faster and more secure native apps',
7+
tagline: 'Build smaller, faster, and more secure desktop applications with a web frontend',
88
organizationName: 'Tauri Studio',
99
projectName: 'tauri',
1010
baseUrl: '/',

src/pages/index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -489,16 +489,16 @@ function Home() {
489489
return (
490490
<Layout
491491
title={`${siteConfig.tagline}`}
492-
description="Tauri is a toolchain for building highly secure native apps that have tiny binaries and are very fast. Whether coming from the front-end with Gatsby, Yew, Svelte, Vue, Angular or React - Tauri solves the hard problems of safe User Interfaces for all the desktop platforms."
492+
description="Tauri is a framework for building tiny, blazing fast binaries for all major desktop platforms. Developers can integrate any front-end framework that compiles to HTML, JS and CSS for building their user interface. The backend of the application is a rust-sourced binary with an API that the front-end can interact with."
493493
>
494494
<header className={classnames('hero hero--dark', styles.heroBanner)}>
495495
<div className="container">
496496
<img src="img/tauri_with_wordmark.svg" style={{ maxWidth: 745 }} />
497497
{/* <p className="hero__subtitle">{siteConfig.tagline}</p> */}
498498
<p className="hero__subtitle">
499-
Bundle your HTML, CSS and JavaScript
499+
Build smaller, faster, and more secure
500500
<br />
501-
to make smaller, faster and more secure native applications
501+
desktop applications with a web frontend
502502
</p>
503503
<div className={styles.buttons}>
504504
<div className="container">

0 commit comments

Comments
 (0)