summaryrefslogtreecommitdiff
path: root/extension/react-app/src/components
diff options
context:
space:
mode:
authorTy Dunn <ty@tydunn.com>2023-07-13 22:20:40 -0700
committerTy Dunn <ty@tydunn.com>2023-07-13 22:20:40 -0700
commit64f36c575757e1e5b497cd40655d61264f37546d (patch)
tree680bd84b32c7eed8ed365b5df30e5a47461441ee /extension/react-app/src/components
parentda835a7178745cedc408307dc9253f23eee5797b (diff)
downloadsncontinue-64f36c575757e1e5b497cd40655d61264f37546d.tar.gz
sncontinue-64f36c575757e1e5b497cd40655d61264f37546d.tar.bz2
sncontinue-64f36c575757e1e5b497cd40655d61264f37546d.zip
new onboarding
Diffstat (limited to 'extension/react-app/src/components')
-rw-r--r--extension/react-app/src/components/Onboarding.tsx17
1 files changed, 5 insertions, 12 deletions
diff --git a/extension/react-app/src/components/Onboarding.tsx b/extension/react-app/src/components/Onboarding.tsx
index 7772a25e..e2dd6f57 100644
--- a/extension/react-app/src/components/Onboarding.tsx
+++ b/extension/react-app/src/components/Onboarding.tsx
@@ -26,18 +26,12 @@ const StyledSpan = styled.span`
const Onboarding = () => {
const [counter, setCounter] = useState(4);
- const gifs = ["intro", "explain", "edit", "generate", "intro"];
+ const gifs = ["intro", "highlight", "question", "help"];
const topMessages = [
- "Welcome to Continue!",
- "Answer coding questions",
- "Edit in natural language",
- "Generate files from scratch",
- ];
- const bottomMessages = [
- "",
- "Ask Continue about a part of your code to get another perspective",
- "Highlight a section of code and instruct Continue to refactor it",
- "Let Continue build the scaffolding of Python scripts, React components, and more",
+ "Welcome!",
+ "Highlight code",
+ "Ask a question",
+ "Use /help to learn more",
];
useEffect(() => {
@@ -107,7 +101,6 @@ const Onboarding = () => {
/>
)}
</div>
- <p>{bottomMessages[counter]}</p>
<p
style={{
paddingLeft: "50px",