devspace icon indicating copy to clipboard operation
devspace copied to clipboard

Update the quickstart projects with refreshed HTML landing pages and v6 compilation info

Open jschalz opened this issue 3 years ago • 0 comments

Summary:

The current landing pages for the DevSpace Quickstart projects do not reflect updated logos and need refreshed HTML structuring and content. Each project also needs

To do:

  • In each project, replace outdated HTML with new HTML (provided below)
  • Update the "Choose a Project" section on the Initialize a Project with v6 compilation information

Updated HTML:

<html>
  <head>
    <title>DevSpace Demo</title>
    <link rel="stylesheet" href="css/style.css">
  </head>
  <body>
    <section>
      <div class="container">
        <div class="left">
          <h1>You deployed this project with<img class="logo" src="https://static.loft.sh/branding/logos/devspace/horizontal/mono/devspace_horizontal_mono.svg" alt="DevSpace" /></h1>
          <h2>Now it's time to code:</h2>
          <ol>
            <ul class="dots">
              <li class="red"></li>
              <li class="yellow"></li>
              <li class="blue"></li>
            </ul>
            <li>Edit <u>this text</u> within the <code>./main.go</code> file of this project and save the changes</li>
            <li>Abort <code>go run main.go</code> via <code>CTRL/CMD + C</code></li>
            <li>Run <code>go run main.go</code> again to restart the application</li>
            <li>Reload the browser to see the changes</li>
          </ol>        
        </div>
        <div><img src="https://static.loft.sh/devspace/quickstarts/devspace-astronaut.gif" /></div>
      </div>      
    </section>
  </body>
</html>

jschalz avatar Jul 28 '22 07:07 jschalz