Files
docs/Sources/Docs/Section.swift
Michael Housh 2fa26ef552
All checks were successful
CI / release (push) Successful in 7m6s
feat: Removes unused about section.
2025-04-07 08:47:36 -04:00

9 lines
200 B
Swift

/// Represents different sections of the website.
///
/// This is used to render base layouts appropriately for the given section.
enum Section: String {
case home
case articles
case notFound
}