How to configure layout for landing page (home page)

Hello again @thomas.fortes

Reviewing once again the code there is something I have doubts

you wrote this

pipeline :browser do
    plug :accepts, ["html"]
    plug :fetch_session
    plug :fetch_live_flash
    plug :put_root_layout, html: {ExampleWeb.Layouts, :root}
    plug :put_layout, html: {ExampleWeb.Layouts, :app}
    plug :protect_from_forgery
    plug :put_secure_browser_headers
  end

plug :put_layout, html: {ExampleWeb.Layouts, :app}

Is this plug used for setting the layout for the liveviews?
I thought for what I red here Can't use put_layout with liveviews on router? - #10 by josevalim the liveview layout could only be change in every liveview