Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Brand pages #844

Merged
merged 37 commits into from
Nov 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
081dd7d
Rename original home page to transfer page
JayJay1024 Oct 23, 2024
b90f751
Beta
JayJay1024 Oct 23, 2024
9fe0d1a
Refactor layout
JayJay1024 Oct 24, 2024
533347a
Home page
JayJay1024 Oct 28, 2024
931d890
Careers link
JayJay1024 Oct 28, 2024
dfc1936
Solver page
JayJay1024 Oct 28, 2024
5582d08
Remove test code
JayJay1024 Oct 28, 2024
adc3291
Fix transfer page path
JayJay1024 Oct 28, 2024
241e80b
Animate slogan
JayJay1024 Oct 29, 2024
8679c41
Optimize some animations
JayJay1024 Oct 29, 2024
79d497d
Fix layout
JayJay1024 Oct 29, 2024
35cdc2c
Update projects image
JayJay1024 Oct 30, 2024
afbe69c
Added jump to products title on PC
JayJay1024 Oct 30, 2024
978f0cd
Update app logo
JayJay1024 Oct 31, 2024
2b3d26f
Hide testnet hint on PC
JayJay1024 Oct 31, 2024
13b2e48
Update Transfer nav label to Bridge
JayJay1024 Oct 31, 2024
dea7edc
Update app copyright
JayJay1024 Oct 31, 2024
ebac5bf
Update some links
JayJay1024 Oct 31, 2024
ec9042f
Fix app header background
JayJay1024 Oct 31, 2024
944736e
Reorganize apps structure
JayJay1024 Oct 31, 2024
68129d4
Refactor helix app
JayJay1024 Oct 31, 2024
72af861
Refactor helixbox home
JayJay1024 Oct 31, 2024
bf4233f
Refactor helixbox app
JayJay1024 Oct 31, 2024
2e1253d
Fix some links
JayJay1024 Oct 31, 2024
0f5b6df
Fix packages name
JayJay1024 Oct 31, 2024
3e49bdb
Refactor github actions
JayJay1024 Oct 31, 2024
5fed198
Merge branch 'main' into jay/brand-pages
JayJay1024 Oct 31, 2024
2af7214
Fix dist path
JayJay1024 Oct 31, 2024
09593a5
Update CI
fewensa Nov 1, 2024
5685f2b
udpate ci
fewensa Nov 1, 2024
ae1818f
Test
fewensa Nov 1, 2024
df12c10
action name
fewensa Nov 1, 2024
54e9fa6
Test
fewensa Nov 1, 2024
88866ea
Test
fewensa Nov 1, 2024
37dec77
Test
fewensa Nov 1, 2024
669334d
Test
fewensa Nov 1, 2024
40e1ad7
try trigger paths
fewensa Nov 1, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion .changeset/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
"access": "public",
"baseBranch": "main",
"updateInternalDependencies": "patch",
"ignore": ["@helixbridge/web"]
"ignore": ["helix", "helixbox-home", "helixbox-app"]
}
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: Deploy development
name: Deploy development (app)

on:
pull_request:
paths:
- "apps/web/**"
- "apps/helixbox-app/**"
workflow_dispatch:

jobs:
Expand All @@ -17,34 +17,36 @@ jobs:
uses: pnpm/action-setup@v4

- uses: darwinia-network/devops/actions/smart-vercel@main
name: Deploy web (mainnet)
name: Deploy app (mainnet)
with:
node_version: 20
vercel_token: ${{ secrets.VERCEL_TOKEN }}
vercel_group: itering
preview_section: helix-app-mainnet
preview_output: true
alias_domain: "helix-dev-mainnet"
alias_domain: "helixbox-dev-mainnet"
project_name: "helix-apps"
script_install: pnpm install
script_build: pnpm web build:mainnet
dist_path: apps/web/dist
script_build: pnpm app build:mainnet
dist_path: apps/helixbox-app/dist
enable_notify_comment: true
enable_notify_slack: true
slack_channel: helix-ui
slack_webhook: ${{ secrets.SLACK_INCOMING_WEBHOOK_URL }}

- uses: darwinia-network/devops/actions/smart-vercel@main
name: Deploy web (testnet)
name: Deploy app (testnet)
with:
node_version: 20
vercel_token: ${{ secrets.VERCEL_TOKEN }}
vercel_group: itering
preview_section: helix-app-testnet
preview_output: true
alias_domain: "helix-dev-testnet"
alias_domain: "helixbox-dev-testnet"
project_name: "helix-apps-test"
script_install: pnpm install
script_build: pnpm web build:testnet
dist_path: apps/web/dist
script_build: pnpm app build:testnet
dist_path: apps/helixbox-app/dist
enable_notify_comment: true
enable_notify_slack: true
slack_channel: helix-ui
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: Deploy production
name: Deploy production (app)

on:
push:
tags:
- "v*"
- "app-v*"

jobs:
deploy-package:
Expand All @@ -16,35 +16,37 @@ jobs:
uses: pnpm/action-setup@v4

- uses: darwinia-network/devops/actions/smart-vercel@main
name: Deploy web (mainnet)
name: Deploy app (mainnet)
with:
node_version: 20
vercel_token: ${{ secrets.VERCEL_TOKEN }}
vercel_group: itering
preview_section: helix-app-mainnet
preview_output: true
prod_mode: true
project_name: "helix-apps"
script_install: pnpm install
script_build: pnpm web build:mainnet
dist_path: apps/web/dist
script_build: pnpm app build:mainnet
dist_path: apps/helixbox-app/dist
enable_notify_slack: true
slack_channel: helix-ui
slack_webhook: ${{ secrets.SLACK_INCOMING_WEBHOOK_URL }}
env:
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}

- uses: darwinia-network/devops/actions/smart-vercel@main
name: Deploy web (testnet)
name: Deploy app (testnet)
with:
node_version: 20
vercel_token: ${{ secrets.VERCEL_TOKEN }}
vercel_group: itering
preview_section: helix-app-testnet
preview_output: true
alias_domain: "testnet.helixbridge.app"
alias_domain: "testnet.app.helix.box"
project_name: "helix-apps-test"
script_install: pnpm install
script_build: pnpm web build:testnet
dist_path: apps/web/dist
script_build: pnpm app build:testnet
dist_path: apps/helixbox-app/dist
enable_notify_slack: true
slack_channel: helix-ui
slack_webhook: ${{ secrets.SLACK_INCOMING_WEBHOOK_URL }}
Expand All @@ -68,9 +70,9 @@ jobs:
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
run: |
pnpm install
pnpm web build:mainnet
mv apps/web/fleek.config.json apps/web/dist
cd apps/web/dist
pnpm app build:mainnet
mv apps/helixbox-app/fleek.config.json apps/helixbox-app/dist
cd apps/helixbox-app/dist

npm i -g @fleek-platform/cli
fleek projects switch --id=clwordxrq0003igm26h2r52n1
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: Deploy staging
name: Deploy staging (app)

on:
push:
branches: [main]
paths: ["apps/web/**"]
paths: ["apps/helixbox-app/**"]
workflow_dispatch:

jobs:
Expand All @@ -17,33 +17,35 @@ jobs:
uses: pnpm/action-setup@v4

- uses: darwinia-network/devops/actions/smart-vercel@main
name: Deploy web (mainnet)
name: Deploy app (mainnet)
with:
node_version: 20
vercel_token: ${{ secrets.VERCEL_TOKEN }}
vercel_group: itering
preview_section: helix-app-mainnet
preview_output: true
alias_domain: "helix-stg-mainnet"
alias_domain: "helixbox-stg-mainnet"
project_name: "helix-apps"
script_install: pnpm install
script_build: pnpm web build:mainnet
dist_path: apps/web/dist
script_build: pnpm app build:mainnet
dist_path: apps/helixbox-app/dist
enable_notify_slack: true
slack_channel: helix-ui
slack_webhook: ${{ secrets.SLACK_INCOMING_WEBHOOK_URL }}

- uses: darwinia-network/devops/actions/smart-vercel@main
name: Deploy web (testnet)
name: Deploy app (testnet)
with:
node_version: 20
vercel_token: ${{ secrets.VERCEL_TOKEN }}
vercel_group: itering
preview_section: helix-app-testnet
preview_output: true
alias_domain: "helix-stg-testnet"
alias_domain: "helixbox-stg-testnet"
project_name: "helix-apps-test"
script_install: pnpm install
script_build: pnpm web build:testnet
dist_path: apps/web/dist
script_build: pnpm app build:testnet
dist_path: apps/helixbox-app/dist
enable_notify_slack: true
slack_channel: helix-ui
slack_webhook: ${{ secrets.SLACK_INCOMING_WEBHOOK_URL }}
34 changes: 34 additions & 0 deletions .github/workflows/helix-deploy-dev.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Deploy development (helix)

on:
pull_request:
paths:
- "apps/helix/**"
workflow_dispatch:

jobs:
deploy-package:
name: Deploy package
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Install pnpm
uses: pnpm/action-setup@v4

- uses: darwinia-network/devops/actions/smart-vercel@main
name: Deploy helix
with:
node_version: 20
vercel_token: ${{ secrets.VERCEL_TOKEN }}
vercel_group: itering
preview_section: helix-redirect
preview_output: true
project_name: "helix-redirect-page"
script_install: pnpm install
script_build: pnpm helix build
dist_path: apps/helix/dist
enable_notify_comment: true
enable_notify_slack: true
slack_channel: helix-ui
slack_webhook: ${{ secrets.SLACK_INCOMING_WEBHOOK_URL }}
35 changes: 35 additions & 0 deletions .github/workflows/helix-deploy-prd.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Deploy production (helix)

on:
push:
tags:
- "helix-v*"

jobs:
deploy-package:
name: Deploy package
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Install pnpm
uses: pnpm/action-setup@v4

- uses: darwinia-network/devops/actions/smart-vercel@main
name: Deploy helix
with:
node_version: 20
vercel_token: ${{ secrets.VERCEL_TOKEN }}
vercel_group: itering
preview_section: helix-redirect
preview_output: true
prod_mode: true
project_name: "helix-redirect-page"
script_install: pnpm install
script_build: pnpm helix build
dist_path: apps/helix/dist
enable_notify_slack: true
slack_channel: helix-ui
slack_webhook: ${{ secrets.SLACK_INCOMING_WEBHOOK_URL }}
env:
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
34 changes: 34 additions & 0 deletions .github/workflows/home-deploy-dev.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Deploy development (home)

on:
pull_request:
paths:
- "apps/helixbox-home/**"
workflow_dispatch:

jobs:
deploy-package:
name: Deploy package
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Install pnpm
uses: pnpm/action-setup@v4

- uses: darwinia-network/devops/actions/smart-vercel@main
name: Deploy home
with:
node_version: 20
vercel_token: ${{ secrets.VERCEL_TOKEN }}
vercel_group: itering
preview_section: helix-home
preview_output: true
project_name: "helix-home"
script_install: pnpm install
script_build: pnpm run home build
dist_path: apps/helixbox-home/dist
enable_notify_comment: true
enable_notify_slack: true
slack_channel: helix-ui
slack_webhook: ${{ secrets.SLACK_INCOMING_WEBHOOK_URL }}
35 changes: 35 additions & 0 deletions .github/workflows/home-deploy-prd.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Deploy production (home)

on:
push:
tags:
- "home-v*"

jobs:
deploy-package:
name: Deploy package
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Install pnpm
uses: pnpm/action-setup@v4

- uses: darwinia-network/devops/actions/smart-vercel@main
name: Deploy home
with:
node_version: 20
vercel_token: ${{ secrets.VERCEL_TOKEN }}
vercel_group: itering
preview_section: helix-home
preview_output: true
prod_mode: true
project_name: "helix-home"
script_install: pnpm install
script_build: pnpm run home build
dist_path: apps/helixbox-home/dist
enable_notify_slack: true
slack_channel: helix-ui
slack_webhook: ${{ secrets.SLACK_INCOMING_WEBHOOK_URL }}
env:
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# HelixBridge Interfaces
# Helixbox Interfaces

❤️ Secure, fast, and low-cost cross-chain crypto transfers.

## Web Interface
## App Interface

### Production

- mainnet: https://helixbridge.app (ipfs version: https://helixbridge.eth.limo)
- testnet: https://testnet.helixbridge.app
- mainnet: https://app.helix.box (ipfs version: https://helixbridge.eth.limo)
- testnet: https://testnet.app.helix.box

### Staging

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 4 additions & 0 deletions apps/helix/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# HelixBridge Web Interface

> Helix Bridge is excited to announce its rebranding as Helixbox Bridge, following the upgrade of the Helix brand to Helixbox. For all your cross-chain asset needs, visit our new platform at app.helix.box.

27 changes: 27 additions & 0 deletions apps/helix/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Bridge Stablecoins and Native Tokens on HelixBridge</title>
<meta name="description" content="Secure, fast, and low-cost cross-chain crypto transfers" />

<meta name="format-detection" content="telephone=no">
<link rel="canonical" href="https://helixbridge.app">

<!-- Open Graph -->
<meta property="og:title" content="HelixBridge Interface">
<meta property="og:url" content="https://helixbridge.app/">
<meta property="og:image" content="https://helixbridge.app/preview.png">
<meta property="og:image:alt" content="HelixBridge Interface">
<meta property="og:description" content="Secure, fast, and low-cost cross-chain crypto transfers.">

<meta property="twitter:title" content="HelixBridge Interface">
<meta property="twitter:image" content="https://helixbridge.app/preview.png">
<meta property="twitter:image:alt" content="HelixBridge Interface">
</head>
<body style="background-color: #00141d; color: white; line-height: 1.5rem; font-size: 1rem; font-weight: 400;">
<div id="root"></div>
<script type="module" src="src/main.tsx"></script>
</body>
</html>
Loading
Loading