Skip to contents

This Shiny module defines the home page for the VOX Analysis application, serving as the main entry point for users. It contains the primary layout and navigation elements for accessing various sections of the app.

Usage

mod_starting_page_server(id)

mod_starting_page_ui(id)

Arguments

id

The namespace `id`, used to uniquely identify Shiny modules and UI components within the VOX Analysis package.

Examples

if (interactive()) {
  # Define the UI with the application's home page
  ui <- page(
    useShinyjs(),
    mod_starting_page_ui("home_page")
  )

  # Set up the server for the home page module
  server <- function(input, output, session) {
    mod_starting_page_server("home_page")
  }

  # Run the Shiny app
  shinyApp(ui, server)
}