I want to make my website be able to show a tree structure of links when a user searches it through Google.
I've used sitemap to generate the structure:
# Set the host name for URL creation
SitemapGenerator::Sitemap.default_host = "https://lazyair.co"
SitemapGenerator::Sitemap.create do
add '/about-us', :changefreq => 'weekly'
add '/contact_us', :changefreq => 'weekly'
add '/tutorial', :changefreq => 'weekly'
add '/user', :changefreq => 'daily'
end