create-nexa-app 1.0.16 → 1.0.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -73
- package/bin/nexa.js +14 -1456
- package/package.json +1 -1
- package/template/public/index.html +45 -1
- package/template/src/components/Home/Home.css +13 -0
- package/template/src/components/Home/Home.jsx +9 -1
package/package.json
CHANGED
|
@@ -1,13 +1,57 @@
|
|
|
1
1
|
<!doctype html>
|
|
2
2
|
<html lang="en">
|
|
3
3
|
<head>
|
|
4
|
+
<!-- File: index.html -->
|
|
5
|
+
<!-- Purpose: Root HTML document for Nexa-generated apps -->
|
|
6
|
+
|
|
4
7
|
<meta charset="UTF-8" />
|
|
5
8
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
9
|
+
|
|
10
|
+
<!-- PWA -->
|
|
6
11
|
<meta name="theme-color" content="#3ee7ff" />
|
|
7
12
|
<link rel="manifest" href="./manifest.json" />
|
|
8
|
-
|
|
13
|
+
|
|
14
|
+
<!-- Icons -->
|
|
15
|
+
<link rel="icon" type="image/svg+xml" href="./nexa.svg" />
|
|
16
|
+
<link rel="icon" type="image/png" href="./nexa.png" />
|
|
17
|
+
|
|
18
|
+
<!-- Primary SEO -->
|
|
9
19
|
<title>Nexa</title>
|
|
20
|
+
|
|
21
|
+
<meta
|
|
22
|
+
name="description"
|
|
23
|
+
content="Built with Nexa CLI — a React + Vite + Angular app generator with prebuilt UI, responsive navigation, Redux-ready structure, and scalable architecture."
|
|
24
|
+
/>
|
|
25
|
+
|
|
26
|
+
<meta
|
|
27
|
+
name="keywords"
|
|
28
|
+
content="Nexa CLI, React app, Vite app, Angular app structure, frontend starter template, Redux ready app, modern UI scaffolding"
|
|
29
|
+
/>
|
|
30
|
+
|
|
31
|
+
<meta name="author" content="Salman Saeed" />
|
|
32
|
+
<meta name="robots" content="index, follow" />
|
|
33
|
+
|
|
34
|
+
<!-- Open Graph -->
|
|
35
|
+
<meta property="og:title" content="Nexa App" />
|
|
36
|
+
<meta
|
|
37
|
+
property="og:description"
|
|
38
|
+
content="Generated with Nexa CLI — React + Vite + Angular structure with prebuilt UI and responsive navigation."
|
|
39
|
+
/>
|
|
40
|
+
<meta property="og:type" content="website" />
|
|
41
|
+
<meta property="og:image" content="./nexa.svg" />
|
|
42
|
+
|
|
43
|
+
<!-- Twitter -->
|
|
44
|
+
<meta name="twitter:card" content="summary" />
|
|
45
|
+
<meta name="twitter:title" content="Nexa App" />
|
|
46
|
+
<meta
|
|
47
|
+
name="twitter:description"
|
|
48
|
+
content="Generated with Nexa CLI — fast React + Vite + Angular app setup."
|
|
49
|
+
/>
|
|
50
|
+
|
|
51
|
+
<!-- Canonical -->
|
|
52
|
+
<link rel="canonical" href="/" />
|
|
10
53
|
</head>
|
|
54
|
+
|
|
11
55
|
<body>
|
|
12
56
|
<div id="root"></div>
|
|
13
57
|
<script type="module" src="/src/main.jsx"></script>
|
|
@@ -115,6 +115,19 @@
|
|
|
115
115
|
font-weight: 600;
|
|
116
116
|
}
|
|
117
117
|
|
|
118
|
+
.nexa-credit-link {
|
|
119
|
+
color: var(--nexa-accent);
|
|
120
|
+
font-weight: 600;
|
|
121
|
+
text-decoration: none;
|
|
122
|
+
border-bottom: 1px solid transparent;
|
|
123
|
+
transition: all 0.25s ease;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
.nexa-credit-link:hover {
|
|
127
|
+
border-color: var(--nexa-accent);
|
|
128
|
+
text-shadow: 0 0 8px rgba(255, 207, 90, 0.4);
|
|
129
|
+
}
|
|
130
|
+
|
|
118
131
|
@keyframes nexaReveal {
|
|
119
132
|
0% {
|
|
120
133
|
transform: scale(0.2);
|
|
@@ -15,7 +15,15 @@ const Home = () => {
|
|
|
15
15
|
<h2 className="nexa-wordmark">Nexa</h2>
|
|
16
16
|
<p className="nexa-tagline">Cleaner UI. Prebuilt structure.</p>
|
|
17
17
|
<p className="nexa-credit">
|
|
18
|
-
A product of
|
|
18
|
+
A product of{" "}
|
|
19
|
+
<a
|
|
20
|
+
href="https://consciousneurons.com"
|
|
21
|
+
target="_blank"
|
|
22
|
+
rel="noopener noreferrer"
|
|
23
|
+
className="nexa-credit-link"
|
|
24
|
+
>
|
|
25
|
+
Conscious Neurons
|
|
26
|
+
</a>
|
|
19
27
|
</p>
|
|
20
28
|
</div>
|
|
21
29
|
</section>
|