free-framework 4.8.3 → 4.8.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "free-framework",
3
- "version": "4.8.3",
3
+ "version": "4.8.4",
4
4
  "description": "Professional Node.js engine for the .free language. Blazing-fast SSR, Islands Architecture, and built-in ORM.",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -38,11 +38,11 @@ body {
38
38
  }
39
39
 
40
40
  .btn-outline {
41
- @apply px-6 py-2.5 rounded-lg border border-border font-semibold text-zinc-300 transition-all hover:bg-zinc-900 hover:text-white;
41
+ @apply px-6 py-2.5 rounded-lg border border-zinc-800 font-semibold text-zinc-300 transition-all hover:bg-zinc-900 hover:text-white;
42
42
  }
43
43
 
44
44
  .card-pro {
45
- @apply p-8 rounded-2xl border border-border bg-[#09090b]/50 backdrop-blur-sm transition-all duration-300 hover:border-zinc-700 hover:bg-[#09090b];
45
+ @apply p-8 rounded-2xl border border-zinc-800 bg-[#09090b]/50 backdrop-blur-sm transition-all duration-300 hover:border-zinc-700 hover:bg-[#09090b];
46
46
  }
47
47
 
48
48
  .hero-title {
@@ -54,9 +54,13 @@ body {
54
54
  }
55
55
 
56
56
  .badge-pro {
57
- @apply px-2.5 py-1 rounded-full border border-border bg-zinc-900/50 text-[10px] font-bold tracking-tighter uppercase text-zinc-400;
57
+ @apply px-2.5 py-1 rounded-full border border-zinc-800 bg-zinc-900/50 text-[10px] font-bold tracking-tighter uppercase text-zinc-400;
58
58
  }
59
59
 
60
60
  pre {
61
- @apply bg-zinc-950 border border-border rounded-xl p-6 font-mono text-sm overflow-x-auto text-zinc-300;
61
+ @apply bg-zinc-950 border border-zinc-800 rounded-xl p-6 font-mono text-sm overflow-x-auto text-zinc-300;
62
+ }
63
+
64
+ code {
65
+ @apply font-mono;
62
66
  }
@@ -15,7 +15,7 @@ component Header {
15
15
 
16
16
  div class="flex items-center gap-4" {
17
17
  span class="badge-pro" {
18
- text "v4.8.0-STABLE"
18
+ text "v4.8.4"
19
19
  }
20
20
  a href="/login" class="text-sm font-medium text-white hover:opacity-80 transition-opacity" {
21
21
  text "Sign In"
@@ -2,18 +2,20 @@
2
2
  module.exports = {
3
3
  content: [
4
4
  "./app/**/*.free",
5
- "./views/**/*.html",
6
- "./public/**/*.js"
5
+ "./resources/views/**/*.free",
6
+ "./routes/**/*.free",
7
+ "../resources/views/debug.html"
7
8
  ],
8
9
  theme: {
9
10
  extend: {
10
11
  colors: {
11
- primary: '#00ff88',
12
- secondary: '#00bdff',
13
- dark: '#0a0a0a',
12
+ primary: '#fff',
13
+ secondary: '#a1a1aa',
14
+ dark: '#000',
15
+ border: '#27272a',
14
16
  },
15
17
  fontFamily: {
16
- sans: ['Outfit', 'sans-serif'],
18
+ sans: ['Inter', 'system-ui', 'sans-serif'],
17
19
  },
18
20
  },
19
21
  },