import React from "react";

function WelcomeTab() {
  return (
    <div className="mx-5">
      <h1>Welcome to Continue</h1>

      <p>
        Learn more in the{" "}
        <a href="https://www.notion.so/continue-dev/Continue-User-Guide-1c6ad99887d0474d9e42206f6c98efa4">
          Continue User Guide
        </a>{" "}
      </p>
      <p>Send Nate or Ty your feedback:</p>
      <p>1. What excites you about Continue?</p>
      <p>2. What did you struggle with when using Continue?</p>
      <p>3. How do you wish Continue worked?</p>
    </div>
  );
}

export default WelcomeTab;