Add the following code to a Genesis Child Theme Template File to create a Landing / Splash / Sales Letter page.
<?php // Template Name: Splash
// Remove Header
remove_action('genesis_header', 'genesis_header_markup_open', 5);
remove_action('genesis_header', 'genesis_header_markup_close', 15);
remove_action('genesis_header', 'genesis_do_header');
// Remove Navigation
remove_action('genesis_after_header', 'genesis_do_nav');
remove_action('genesis_after_header', 'genesis_do_subnav');
genesis(); // requires Genesis 1.3+
Share Your Two Cents