Skip to content

Commit

Permalink
Merge pull request #228 from chain4travel/suite
Browse files Browse the repository at this point in the history
Suite
  • Loading branch information
aeddaqqa authored Aug 19, 2024
2 parents 2104ce5 + cff5dd1 commit 72065fc
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 43 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/cypress.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ jobs:
- name: build local image
run: |
docker-compose build --build-arg EXPLORER_IMAGE=${{ env.explorer_image }}:${{ steps.setBranch.outputs.branch }} --build-arg WALLET_IMAGE=${{ env.wallet_image }}:${{ steps.setBranch.outputs.branch }}
docker compose build --build-arg EXPLORER_IMAGE=${{ env.explorer_image }}:${{ steps.setBranch.outputs.branch }} --build-arg WALLET_IMAGE=${{ env.wallet_image }}:${{ steps.setBranch.outputs.branch }}
export EXPLORER_IMAGE=${{ env.explorer_image }}:${{ steps.setBranch.outputs.branch }}
export WALLET_IMAGE=${{ env.wallet_image }}:${{ steps.setBranch.outputs.branch }}
docker-compose up -d
docker compose up -d
docker cp camino-suite-host-container:/app/camino-suite ./
mkdir -p /home/runner/.cache
docker cp camino-suite-host-container:/root/.cache/Cypress /home/runner/.cache/
Expand Down Expand Up @@ -102,10 +102,10 @@ jobs:
- name: build local image
run: |
docker-compose build --build-arg EXPLORER_IMAGE=${{ env.explorer_image }}:${{ steps.setBranch.outputs.branch }} --build-arg WALLET_IMAGE=${{ env.wallet_image }}:${{ steps.setBranch.outputs.branch }}
docker compose build --build-arg EXPLORER_IMAGE=${{ env.explorer_image }}:${{ steps.setBranch.outputs.branch }} --build-arg WALLET_IMAGE=${{ env.wallet_image }}:${{ steps.setBranch.outputs.branch }}
export EXPLORER_IMAGE=${{ env.explorer_image }}:${{ steps.setBranch.outputs.branch }}
export WALLET_IMAGE=${{ env.wallet_image }}:${{ steps.setBranch.outputs.branch }}
docker-compose up -d
docker compose up -d
docker cp camino-suite-host-container:/app/camino-suite ./
mkdir -p /home/runner/.cache
docker cp camino-suite-host-container:/root/.cache/Cypress /home/runner/.cache/
Expand Down
28 changes: 22 additions & 6 deletions src/constants/footer-consts.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -133,21 +133,30 @@ export const FooterLinks = [
name: 'Camino Network',
links: [
{
text: 'Ecosystem',
text: 'The Network',
url: 'https://camino.network/ecosystem/',
},
{
text: 'Travel',
url: 'https://camino.network/travel/',
text: 'Use Cases',
url: 'https://camino.network/partners/',
},
{
text: 'Validators',
url: 'https://camino.network/validators/',
},
{
text: 'Developers',
url: 'https://camino.network/developer/',
text: 'Web3 Travel',
url: 'https://camino.network/travel/',
},
{
text: 'Camino Messenger',
url: 'https://camino.network/messenger',
},
],
},
{
name: 'Discover',
links: [
{
text: 'Community',
url: 'https://camino.network/community/',
Expand All @@ -156,6 +165,14 @@ export const FooterLinks = [
text: 'Blog',
url: 'https://camino.network/blog/',
},
{
text: 'News',
url: 'https://camino.network/news',
},
{
text: 'Entities',
url: 'https://camino.network/entities/',
},
],
},
{
Expand Down Expand Up @@ -187,5 +204,4 @@ export const FooterLinks = [
},
],
},

]
2 changes: 0 additions & 2 deletions src/layout/RoutesSuite.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ import MountAccessComponent from '../views/access/MountAccessComponent'
import Create from '../views/create/Create'
import ExplorerApp from '../views/explorer/ExplorerApp'
import LandingPage from '../views/landing/LandingPage'
import Legal from '../views/legal/Legal'
import LoginPage from '../views/login/LoginPage'
import Partners from '../views/partners'
import CreatedOffers from '../views/partners/CreatedOffers'
Expand Down Expand Up @@ -114,7 +113,6 @@ export default function RoutesSuite() {
</Route>
<Route path="/login" element={<LoginPage />} />
<Route path="/create" element={<Create />} />
<Route path="/legal" element={<Legal />} />
<Route path="/access" element={<AccessLayout />}>
<Route path="keystore" element={<MountAccessComponent type="Keystore" />} />
<Route path="mnemonic" element={<MountAccessComponent type="Mnemonic" />} />
Expand Down
31 changes: 0 additions & 31 deletions src/views/legal/Legal.tsx

This file was deleted.

0 comments on commit 72065fc

Please sign in to comment.