Logo e favicon nel header, partite programmate su web e mobile, reset password, pagine FAQ/sitemap, privacy/termini GDPR e icona Android «Match Live Tv». Co-authored-by: Cursor <cursoragent@cursor.com>
26 lines
264 B
Ruby
26 lines
264 B
Ruby
module Public
|
|
class PagesController < WebBaseController
|
|
def home
|
|
end
|
|
|
|
def features
|
|
end
|
|
|
|
def pricing
|
|
@plans = Plan.ordered
|
|
end
|
|
|
|
def privacy
|
|
end
|
|
|
|
def terms
|
|
end
|
|
|
|
def faq
|
|
end
|
|
|
|
def pallavolo
|
|
end
|
|
end
|
|
end
|