feat: Add Lawn Care Tips section and improve Dashboard layout

This commit is contained in:
Blake Ridgway 2025-06-17 18:09:59 -05:00
parent 1f50fedb80
commit 985c944e16
17 changed files with 689 additions and 18 deletions

View file

@ -9,4 +9,6 @@ public class ApplicationDbContext : DbContext
: base(options) { }
public DbSet<LawnCareEvent> LawnCareEvents { get; set; }
public DbSet<LawnCareTip> LawnCareTips { get; set; }
}