Needing a title screen(1st screen) on LCD

Your draw() function, which currently does nothing, will need to do something, based on the time since the Arduino was reset.

void draw()
{
   if(millis() < 5000) // It's been less than 5 seconds since reset
   {
      drawSplashScreen();
   }
   else
   {
      drawSomethingElse();
   }
}

All you need to do is write those two functions.