<?php // pineapple_signup.php  
	
	require_once "./pineapple.php";		// this file has the menu, header and css code for the site
	require_once "./mysql/helper.php";
	
	// This line renders the menu and header for the site
  pineapple_html_begin("Pineapple PNP", "Pricing");
  /*
    Proposed Pricing

    Setup
    =====
    $50 First time a unique board is ordered (a new revision is considered a new board)
    $10 Reorder of a previously built revision
    
    PCB
    =================
		board house cost, no markup

    Stencil
    =================
		stencil house cost, no markup

    Insertion Charges
    =================
    $0.70 per insertion of SMT parts.
    $0.25 per PIN for Through Hole parts.

		$0.35 per insertion of SMT parts in our library.
    $0.15 per PIN for Through Hole parts in our library.

  */
?>
    <h1>Pricing</h1>
    <p>We have not annoucned our pricing yet but when we do we think that you will find that our prices are "uber affordable"</p>
    <p>Our mission is to make pick and place printed circuit board assembly affordable for the hobbiest and maker.</p>
    <p>If you want to know about pricing as soon as we anounce it (or maybe even a bit sooner) <a href="pineapple_signup.php">register</a> for an account.</p>
<?php

php_exit:

  // This is the end of the HTML body, scripting starts after this.
  pineapple_script_end();
  // This is the end of the HTML file, scripting starts after this.
  pineapple_html_end();
?>