Skip to content

Commit

Permalink
Merge pull request #55 from GenerateNU/user_onboarding
Browse files Browse the repository at this point in the history
User onboarding flow
  • Loading branch information
muneerlalji authored Apr 16, 2024
2 parents 9883f0c + 5ed401d commit 227ec96
Show file tree
Hide file tree
Showing 3 changed files with 123 additions and 1 deletion.
116 changes: 116 additions & 0 deletions frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion frontend/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,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 @@ -23,6 +23,7 @@ function App() {
<Route path="/reviews" element={<ReviewsPage />} />
<Route path="/create" element={<CreateDesign />} />
<Route path="/create/custom" element={<InputForm />} />
<Route path="/onboarding" element={<Onboarding />} />
</Routes>
</Router>
);
Expand Down
5 changes: 5 additions & 0 deletions frontend/src/pages/CreateDesign.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ function CreateDesign() {
customColors='bg-brand-temp-teal text-brand-white hover:bg-opacity-75' />
</Link>
<FileUploader />
<Link to="/onboarding">
<Button label='Help'
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 227ec96

Please sign in to comment.