module Lookbook::ApplicationHelper

def config

def config
  Lookbook::Engine.config.lookbook
end

def feature_enabled?(name)

def feature_enabled?(name)
  Lookbook::Features.enabled?(name)
end

def landing_path

def landing_path
  landing = feature_enabled?(:pages) ? Lookbook.pages.find(&:landing) || Lookbook.pages.first : nil
  if landing.present?
    page_path(landing.lookup_path)
  else
    home_path
  end
end