Introduced a new Event Calendar component that displays scheduled events using the Heron.MudCalendar. Implemented IEventOccurrenceService to fetch event occurrences, and added mock data for initial testing. Updated navigation menu to include a link to the Event Calendar.
29 lines
1.1 KiB
Plaintext
29 lines
1.1 KiB
Plaintext
@using System.Net.Http
|
|
@using System.Net.Http.Json
|
|
@using Microsoft.AspNetCore.Authorization
|
|
@using Microsoft.AspNetCore.Components.Authorization
|
|
@using Microsoft.AspNetCore.Components.Forms
|
|
@using Microsoft.AspNetCore.Components.Routing
|
|
@using Microsoft.AspNetCore.Components.Web
|
|
@using static Microsoft.AspNetCore.Components.Web.RenderMode
|
|
@using Microsoft.AspNetCore.Components.Web.Virtualization
|
|
@using Microsoft.JSInterop
|
|
@using WebApp
|
|
@using WebApp.Components
|
|
@using WebApp.Components.Pages
|
|
@using WebApp.Components.Shared
|
|
@using WebApp.Components.Shared.Components
|
|
@using WebApp.Components.Shared.Layout
|
|
@using WebApp.Components.Features.Authentication
|
|
@using WebApp.Components.Features.Students
|
|
@using WebApp.Components.Features.Students.Components
|
|
@using WebApp.Components.Features.Teams
|
|
@using WebApp.Components.Features.Teams.Components
|
|
@using WebApp.Components.Features.Events
|
|
@using WebApp.Components.Features.Events.Components
|
|
@using WebApp.Components.Features.MeetingSchedule
|
|
@using WebApp.Components.Features.EventCalendar
|
|
@using MudBlazor
|
|
@using Core.Entities
|
|
@using Data
|