-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b7ce5ab
commit 3b30930
Showing
18 changed files
with
8,183 additions
and
18,751 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
github: [lepoco] |
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# Lines starting with '#' are comments. | ||
# Each line is a file pattern followed by one or more owners. | ||
|
||
# These owners will be the default owners for everything in the repo, | ||
# and will automatically be added as reviewers to all pull requests. | ||
* @pomianowski |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# Once upon a time... |
Empty file.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -66,5 +66,8 @@ | |
"last 1 firefox version", | ||
"last 1 safari version" | ||
] | ||
}, | ||
"dependencies": { | ||
"dotenv": "^16.4.5" | ||
} | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
/** | ||
* This Source Code Form is subject to the terms of the GNU GPL-3.0 License. | ||
* If a copy of the GPL-3.0 was not distributed with this file, You can obtain one at https://www.gnu.org/licenses/gpl-3.0.en.html. | ||
* Copyright (C) 2022 Leszek Pomianowski. | ||
* All Rights Reserved. | ||
*/ | ||
|
||
import { PureComponent } from 'react'; | ||
import { Link } from 'react-router-dom'; | ||
|
||
export class Tools extends PureComponent { | ||
public static displayName: string = Tools.name; | ||
|
||
public render(): JSX.Element { | ||
return ( | ||
<div> | ||
<div className="page__wrapper -hmv-50 -bottom"> | ||
<header className="-reveal"> | ||
<span className="page__header">lepo.co</span> | ||
<h1 className="page__title">Tools</h1> | ||
</header> | ||
|
||
<div className="-reveal"> | ||
<p> | ||
It doesn't make much sense to count what applications we create. | ||
Because you definitely need another. The key is what questions we | ||
will ask you. For what and for whom. Collecting precise data, we | ||
offer mathematically perfect solutions and get to work. This is | ||
the real art of increasing efficiency. In other words? | ||
Tools. | ||
</p> | ||
</div> | ||
|
||
<div className="-reveal"> | ||
<Link to="/contact">Write to us</Link> | ||
</div> | ||
</div> | ||
<div className="banner"> | ||
<div className="container"> | ||
<div className="row"> | ||
<div className="col-12 col-lg-6 -reveal"> | ||
<div className="banner__title"> | ||
<h2>WPF UI</h2> | ||
<span>fluent design system</span> | ||
</div> | ||
</div> | ||
<div className="col-12 col-lg-6 -reveal"> | ||
<p> | ||
Simple way to make your Windows 11 application written in WPF | ||
keep up with modern design trends. Library changes the base | ||
elements like Page, ToggleButton or List, and also includes | ||
additional controls like Navigation, NumberBox, Dialog or | ||
Snackbar. | ||
</p> | ||
<a | ||
href="https://github.com/lepoco/wpfui" | ||
target="_blank" | ||
className="-black" | ||
rel="noopener nofollow noreferrer"> | ||
Check it out on GitHub | ||
</a> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<div className="banner --gray"> | ||
<div className="container"> | ||
<div className="row"> | ||
<div className="col-12 col-lg-6 -reveal"> | ||
<div className="banner__title"> | ||
<h2>Radiograph</h2> | ||
<span>hardware monitoring</span> | ||
</div> | ||
</div> | ||
<div className="col-12 col-lg-6 -reveal"> | ||
<p> | ||
Modern application that brings together all your favorite | ||
tools in one place. Monitor your processor and graphics card, | ||
check hard drives or network connection. Elegant, efficient | ||
and easy to use. | ||
</p> | ||
<a | ||
href="https://www.microsoft.com/en-us/p/radiograph/9nh1p86h06cg?activetab=pivot:overviewtab" | ||
target="_blank" | ||
className="-black" | ||
rel="noopener nofollow noreferrer"> | ||
Download from Microsoft Store | ||
</a> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
} | ||
} |