Skip to content

Commit 139ad77

Browse files
committed
chore: Update example app and project metadata
1 parent 5b58f5b commit 139ad77

3 files changed

Lines changed: 57 additions & 26 deletions

File tree

examples/testui/dist_MyLibraryApp/app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ function app() {
22
return {
33
count: 0,
44
increment() {
5-
this.count = count + 1;
5+
this.count = this.count + 1;
66
},
77
};
88
}
Lines changed: 48 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,52 +1,75 @@
11
/* ============================================
2-
ProXPL UI — Generated style.css
2+
ProXPL UI — Premium Generated style.css
33
App: MyLibraryApp
44
============================================ */
55

6-
/* === CSS Reset === */
6+
:root {
7+
--primary: #6366f1;
8+
--primary-hover: #4f46e5;
9+
--bg-gradient: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
10+
--card-bg: rgba(255, 255, 255, 0.8);
11+
--text-main: #0f172a;
12+
--text-muted: #64748b;
13+
}
14+
715
*, *::before, *::after {
816
box-sizing: border-box;
917
margin: 0;
1018
padding: 0;
1119
}
1220

13-
/* === Base === */
1421
html {
1522
font-size: 16px;
1623
scroll-behavior: smooth;
1724
}
1825

1926
body {
20-
font-family: 'Inter', system-ui, -apple-system, sans-serif;
21-
font-size: 1rem;
22-
line-height: 1.6;
23-
color: #1f2937;
24-
background: #f9fafb;
27+
font-family: 'Outfit', 'Inter', system-ui, sans-serif;
28+
color: var(--text-main);
29+
background: var(--bg-gradient);
2530
min-height: 100vh;
31+
display: flex;
32+
align-items: center;
33+
justify-content: center;
34+
}
35+
36+
.prox-window {
37+
background: var(--card-bg);
38+
backdrop-filter: blur(12px);
39+
-webkit-backdrop-filter: blur(12px);
40+
border-radius: 2rem;
41+
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
42+
border: 1px solid rgba(255, 255, 255, 0.3);
43+
padding: 3rem;
44+
margin: 1rem;
45+
max-width: 600px;
46+
width: 90%;
47+
animation: zoomIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
2648
}
2749

28-
img, video, canvas {
29-
max-width: 100%;
30-
display: block;
50+
button {
51+
background: var(--primary);
52+
color: white;
53+
border: none;
54+
padding: 0.75rem 1.5rem;
55+
border-radius: 1rem;
56+
font-weight: 600;
57+
cursor: pointer;
58+
transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
59+
box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.3);
3160
}
3261

33-
input, button, textarea, select {
34-
font: inherit;
62+
button:hover {
63+
background: var(--primary-hover);
64+
transform: translateY(-2px);
65+
box-shadow: 0 20px 25px -5px rgba(99, 102, 241, 0.4);
3566
}
3667

37-
/* === ProXPL Window Component === */
38-
.prox-window {
39-
background: #ffffff;
40-
border-radius: 1rem;
41-
box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
42-
border: 1px solid rgba(0, 0, 0, 0.05);
43-
padding: 2rem;
44-
margin: 2rem;
68+
button:active {
69+
transform: translateY(0);
4570
}
4671

47-
/* === Animations === */
48-
@keyframes fadeIn {
49-
from { opacity: 0; }
50-
to { opacity: 1; }
72+
span {
73+
font-size: 1.1rem;
5174
}
5275

examples/testui/project-lock.pxcf

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# ProXPL Project Lockfile - DO NOT EDIT MANUALLY
2+
lock_version: "1.0.0"
3+
project: "testui"
4+
version: "0.1.0"
5+
6+
dependencies {
7+
# Resolved hashes will go here
8+
}

0 commit comments

Comments
 (0)