Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"editor.tabSize": 2
}
7 changes: 7 additions & 0 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ const MigrateV2DetailsPage = lazy(() =>
import('./pages/PoolsPage/v3/MigrateV2DetailsPage'),
);
const PositionPage = lazy(() => import('./pages/PoolsPage/v3/PositionPage'));
const LaunchpadPage = lazy(() => import('./pages/LaunchpadPage'));

import { PageLayout } from 'layouts';
import { Popups, TermsWrapper } from 'components';
Expand Down Expand Up @@ -191,6 +192,12 @@ const App: React.FC = () => {
<SwapPage />
</PageLayout>
</Route>
<Route exact strict path='/launch'>
<PageLayout>
<LaunchpadPage />
</PageLayout>
</Route>

<Route exact path='/bridge'>
<PageLayout>
<BridgePage />
Expand Down
Binary file added src/assets/images/launchpad/confirm-email.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/images/launchpad/cta_bg.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions src/assets/images/launchpad/faq/fees-eligibility-icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions src/assets/images/launchpad/faq/security-icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions src/assets/images/launchpad/faq/start-icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions src/assets/images/launchpad/faq/troubleshooting-icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/images/launchpad/social_media_bg.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions src/components/Header/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,14 @@ const Header: React.FC<{ onUpdateNewsletter: (val: boolean) => void }> = ({
});
}

const launchTab: HeaderMenuItem = {
text: 'QuickLaunch',
id: 'quick-launch',
link: '/launch',
isNew: true,
};
menuItems.push(launchTab);

const perpsTab: HeaderMenuItem = {
text: t('Perps'),
id: 'earn-tab',
Expand Down
Loading