Skip to content

Commit

Permalink
The ticket -> Adds button for onbording help
Browse files Browse the repository at this point in the history
  • Loading branch information
kaijohnsonn committed Apr 8, 2024
1 parent 007a1fb commit 8cb850d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions frontend/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ function App() {
return (
<Router>
<Routes>
<Route path="/" element={<Onboarding />} />
<Route path="/" element={<CreateDesign />} />
<Route path="/download-cad-conversion" element={<DownloadCadConversion />} />
<Route path="/main" element={<MainPage />} />
<Route path="/about" element={<AboutPage />} />
Expand All @@ -24,7 +24,7 @@ function App() {
<Route path="/reviews" element={<ReviewsPage />} />
<Route path="/create" element={<CreateDesign />} />
<Route path="/create/custom" element={<InputForm />} />
<Route path="/onbording" element={<JoyrideTest />} />
<Route path="/onboarding" element={<Onboarding />} />
</Routes>
</Router>
);
Expand Down
8 changes: 4 additions & 4 deletions frontend/src/pages/CreateDesign.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ function CreateDesign() {
handleClick={() => console.log('button')}
customColors='bg-brand-temp-teal text-brand-white hover:bg-opacity-75' />
</Link>
<FileUploader />
<Link to="/onbording">
<FileUploader />
<Link to="/onboarding">
<Button label='Help'
handleClick={() => console.log('Start Joyride')}
customColors='bg-green-500 text-white hover:bg-green-600' />
handleClick={() => console.log('button')}
customColors='bg-brand-temp-teal text-brand-white hover:bg-opacity-75' />
</Link>
</StepWrapper>
</div>
Expand Down

0 comments on commit 8cb850d

Please sign in to comment.