Files
docs/Sources/Docs/Section.swift
2025-04-02 11:45:51 -04:00

10 lines
213 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 about
case articles
case notFound
}