free-framework 5.0.0 → 5.0.1

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.
@@ -17,7 +17,7 @@ component Header {
17
17
 
18
18
  div class="flex items-center gap-4" {
19
19
  span class="badge-pro" {
20
- text "v4.8.7"
20
+ text "v5.0.1"
21
21
  }
22
22
  if (props.user) {
23
23
  a href="/logout" class="text-sm font-medium text-white hover:opacity-80 transition-opacity" {
@@ -28,7 +28,7 @@ component Home {
28
28
  section class="relative pt-48 pb-32 px-8 overflow-hidden" {
29
29
  div class="max-w-5xl mx-auto text-center relative z-10" {
30
30
  div class="inline-block px-4 py-1 rounded-full bg-primary/20 border border-primary/30 mb-8" {
31
- span class="text-[9px] font-black tracking-[.4em] uppercase text-primary" { text "Aura v5.0.0 High-Octane" }
31
+ span class="text-[9px] font-black tracking-[.4em] uppercase text-primary" { text "Aura v5.0.1 High-Octane" }
32
32
  }
33
33
  h1 class="text-7xl md:text-9xl font-black tracking-tighter leading-none mb-10" {
34
34
  text "The Taskfy"
@@ -14,15 +14,15 @@
14
14
  */
15
15
 
16
16
  // A simple GET request that renders the 'Home' view component
17
- get "/" -> Home
17
+ Get "/" -> Home
18
18
 
19
19
  // Documentation & Authentication
20
- get "/docs" -> Docs
21
- get "/login" -> Login
20
+ Get "/docs" -> Docs
21
+ Get "/login" -> Login
22
22
 
23
23
  // Example of a route that points to a dedicated controller logic before rendering
24
24
  // Ensure the 'Dashboard' view is defined in resources/views
25
- get "/dashboard" {
25
+ Get "/dashboard" {
26
26
  // Calling an action/controller before returning the view
27
27
  // The controller should handle checking if the user is authenticated
28
28
  return Dashboard;