Skip to content

Commit

Permalink
Add Mission page
Browse files Browse the repository at this point in the history
  • Loading branch information
pH-7 committed May 7, 2024
1 parent b757f03 commit 2884fca
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions client/components/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ function InnerApp() {
<Routes>
<Route path="/" element={<SearchPage />} />
<Route path="/comparison-google" element={<ComparisonPage />} />
<Route path="/mission" element={<MissionPage />} />
<Route path="/pricing" element={<PricingPage />} />
</Routes>
</Main>
Expand Down
10 changes: 10 additions & 0 deletions client/pages/MissionPage.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import React from 'react';

export const ComparisonPage = () => {
return (
<div>
<h1>Mission Page</h1>

</div>
);
};

0 comments on commit 2884fca

Please sign in to comment.