feat: Initial commit

This commit is contained in:
2025-04-02 11:44:59 -04:00
parent b1e4b04844
commit e66f29f910
20 changed files with 4106 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
/// 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
}