nodeguy/website/src/components/CreateNativeApps.js
2019-09-29 20:40:45 +02:00

48 lines
1.2 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import React from "react";
import { SplitView } from "./SplitView";
import styled from "styled-components";
const Image = styled.img`
max-height: 300px;
padding-bottom: 40px;
`;
export const CreateNativeApps = () => {
const ColumnOne = () => {
return <Image src="img/demo.png" />;
};
const ColumnTwo = () => {
return (
<div>
<h3>
Create native apps for Windows, MacOs and Linux using JavaScript and
CSS
</h3>
<p>
lets you create truly native apps and doesn't compromise on your
users' experience. It provides a core set of platform agnostic native
widgets that map directly to the platforms native UI building blocks.
</p>
<p>
NodeGui widgets are built on top of{" "}
<a href="https://www.qt.io/" target="_blank">
Qt
</a>{" "}
which is a mature dekstop apps framework. NodeGui widgets are
extremely customizable just like in the web but does{" "}
<strong>NOT</strong> use a Web browser under the hood.
</p>
</div>
);
};
return (
<SplitView
columnTwoClass={"text"}
columnOne={<ColumnOne />}
columnTwo={<ColumnTwo />}
/>
);
};