19 lines
631 B
Haskell
19 lines
631 B
Haskell
|
|
module Web.Controller.StaticPages where
|
||
|
|
|
||
|
|
-- WP-0015 — Public-facing intro and tutorial pages (no auth required)
|
||
|
|
|
||
|
|
import Web.Types
|
||
|
|
import Generated.Types
|
||
|
|
import IHP.Prelude
|
||
|
|
import IHP.ControllerPrelude
|
||
|
|
import Web.View.StaticPages.Landing
|
||
|
|
import Web.View.StaticPages.Capabilities
|
||
|
|
import Web.View.StaticPages.Tutorial
|
||
|
|
import Web.View.StaticPages.ExtensionGuide
|
||
|
|
|
||
|
|
instance Controller StaticPagesController where
|
||
|
|
action LandingAction = render LandingView
|
||
|
|
action CapabilitiesAction = render CapabilitiesView
|
||
|
|
action TutorialAction = render TutorialView
|
||
|
|
action ExtensionGuideAction = render ExtensionGuideView
|