Files
MatchLiveTv/backend/app/controllers/public/pages_controller.rb
Emiliano Frascaro 471291b2c4 Sito marketing, SEO, legal, live programmata e branding Match Live Tv.
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>
2026-05-26 23:17:15 +02:00

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