Skip to content

Commit ab091c8

Browse files
committed
Fixes all screens except APIs
1 parent 553e96b commit ab091c8

File tree

6 files changed

+15
-16
lines changed

6 files changed

+15
-16
lines changed

website/docs/guides/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ React NodeGui enables you to create desktop applications with React. You could s
77
as a lightly modified variant of the Node.js runtime that is focused on desktop applications
88
instead of web servers.
99

10-
React NodeGui is a react renderer for NodeGui, which is an efficient JavaScript binding to a cross platform graphical user interface
10+
React NodeGui is a react renderer for [NodeGui](https://nodegui.org), which is an efficient JavaScript binding to a cross platform graphical user interface
1111
(GUI) library `Qt`. Qt is one of the most mature and efficient library for building desktop applications.
1212
This enabled React NodeGui to be extrememly memory and CPU efficient as compared to other popular Javascript Desktop GUI solutions. A hello world app built with React NodeGui runs on less than 20Mb of memory.
1313

website/src/components/CodeExample.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export const CodeExample = () => {
1818
const ColumnTwo = () => {
1919
return (
2020
<div>
21-
<h3>Written in JavaScript—rendered with native code by Qt</h3>
21+
<h3>Written in React—rendered with native code by Qt</h3>
2222
<p>
2323
Apps can be built completely in JavaScript. This enables native app
2424
development for whole new teams of developers, and can let existing

website/src/components/CreateNativeApps.js

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,13 @@ const Image = styled.img`
99

1010
export const CreateNativeApps = () => {
1111
const ColumnOne = () => {
12-
return <Image src="img/demo.png" />;
12+
return <Image src="/img/demo.png" />;
1313
};
1414
const ColumnTwo = () => {
1515
return (
1616
<div>
1717
<h3>
18-
Create native apps for Windows, MacOs and Linux using JavaScript and
19-
CSS
18+
Create native apps for Windows, MacOs and Linux using React and CSS
2019
</h3>
2120

2221
<p>
@@ -26,11 +25,11 @@ export const CreateNativeApps = () => {
2625
</p>
2726

2827
<p>
29-
NodeGui widgets are built on top of{" "}
28+
React NodeGui widgets are built on top of{" "}
3029
<a href="https://www.qt.io/" target="_blank">
3130
Qt
3231
</a>{" "}
33-
which is a mature dekstop apps framework. NodeGui widgets are
32+
which is a mature dekstop apps framework. React NodeGui components are
3433
extremely customizable just like in the web but does{" "}
3534
<strong>NOT</strong> use a Web browser under the hood.
3635
</p>

website/src/components/Features.js

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ import classnames from "classnames";
55

66
const features = [
77
{
8-
title: <>Web Technologies</>,
9-
imageUrl: "img/undraw_website_setup.svg",
8+
title: <>Powered by React</>,
9+
imageUrl: "img/undraw_react.svg",
1010
description: (
1111
<>
12-
With NodeGui, you can build your app with familiar web technologies like
13-
CSS and JavaScript. There is even a{" "}
14-
<a href="https://react.nodegui.org">React based version</a>.
12+
With React NodeGui, you can build truly native apps with React. If you
13+
dont want to use React, there is also a pure{" "}
14+
<a href="https://nodegui.org">JavaScript based version</a>.
1515
</>
1616
)
1717
},
@@ -20,8 +20,8 @@ const features = [
2020
imageUrl: "img/undraw_code_review.svg",
2121
description: (
2222
<>
23-
NodeGui is an open source project maintained by an active community of
24-
contributors.
23+
React NodeGui is an open source project maintained by an active
24+
community of contributors.
2525
</>
2626
)
2727
},
@@ -30,8 +30,7 @@ const features = [
3030
imageUrl: "img/undraw_windows.svg",
3131
description: (
3232
<>
33-
Compatible with Mac, Windows, and Linux, NodeGui apps build and run on
34-
three platforms.
33+
React NodeGui apps build and run on Mac, Windows, and Linux platforms.
3534
</>
3635
)
3736
}

website/static/img/code-sample.png

-60 KB
Loading

website/static/img/undraw_react.svg

Lines changed: 1 addition & 0 deletions
Loading

0 commit comments

Comments
 (0)