This repository has been archived by the owner on Sep 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from nousantx/main
feat(pages): add simple pages
- Loading branch information
Showing
1 changed file
with
67 additions
and
0 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,67 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<meta http-equiv="X-UA-Compatible" content="ie=edge" /> | ||
<title>@tenoxui/property | nousantx</title> | ||
<meta name="description" content="@tenoxui/property simple usage for development." /> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/@tenoxui/property"></script> | ||
</head> | ||
<body class="m-0 family-[sans-serif] bg-#14161b tc-#e4e5e9"> | ||
<main class="w-mx-1440px mx-auto p-2rem"> | ||
<header> | ||
<h1>It's tenoxui/property</h1> | ||
<p class="mt-8px">Hello, ignore this message, and use tenoxui instead :D</p> | ||
|
||
<div class="mt-2rem"> | ||
<p>Install :</p> | ||
|
||
<code class="d-block bg-[rgba(49,54,65,0.30)] p-8px br-2px"> | ||
npm i tenoxui @tenoxui/property --save-dev | ||
</code> | ||
|
||
<code class="d-block mt-1.5rem bg-[rgba(49,54,65,0.30)] p-8px br-2px lh-1.5"> | ||
import tenoxui, { use } from "tenoxui"; | ||
|
||
<br /> | ||
|
||
import property from "@tenoxui/property"; | ||
</code> | ||
|
||
<p class="my-1.5rem pl-1rem">or cdn :</p> | ||
|
||
<code class="d-block bg-[rgba(49,54,65,0.30)] p-8px br-2px lh-1.5"> | ||
<script src="https://cdn.jsdelivr.net/npm/tenoxui"></script> | ||
|
||
<br /> | ||
|
||
<script src="https://cdn.jsdelivr.net/npm/@tenoxui/property"></script> | ||
</code> | ||
|
||
<p class="mt-1.5rem">Usage example :</p> | ||
|
||
<code class="d-block bg-[rgba(49,54,65,0.30)] p-8px br-2px lh-1.5"> | ||
<script> | ||
|
||
<br /> | ||
|
||
use({ property: [property] }); // use property | ||
|
||
<br /> | ||
|
||
tenoxui(); // init tenoxui | ||
|
||
<br /> | ||
|
||
</script> | ||
</code> | ||
</div> | ||
</header> | ||
</main> | ||
<script> | ||
tenoxui(property); | ||
</script> | ||
</body> | ||
</html> |