Compare commits

...

3 Commits

Author SHA1 Message Date
tim
00594c8125 homepage video 2025-03-13 16:02:42 -04:00
tim
48ad37f105 homepage video 2025-03-13 15:46:05 -04:00
tim
78d6b32a88 TradingView link fix 2025-03-13 15:29:09 -04:00
4 changed files with 22 additions and 4 deletions

View File

@@ -3,12 +3,14 @@ import { h } from 'vue'
import type { Theme } from 'vitepress' import type { Theme } from 'vitepress'
import DefaultTheme from 'vitepress/theme-without-fonts' // WITHOUT fonts import DefaultTheme from 'vitepress/theme-without-fonts' // WITHOUT fonts
import './style.css' import './style.css'
import IntroVideo from "../../components/IntroVideo.vue";
export default { export default {
extends: DefaultTheme, extends: DefaultTheme,
Layout: () => { Layout: () => {
return h(DefaultTheme.Layout, null, { return h(DefaultTheme.Layout, null, {
// https://vitepress.dev/guide/extending-default-theme#layout-slots // https://vitepress.dev/guide/extending-default-theme#layout-slots
'home-hero-actions-after': () => h(IntroVideo),
}) })
}, },
enhanceApp({ app, router, siteData }) { enhanceApp({ app, router, siteData }) {

View File

@@ -0,0 +1,13 @@
<template>
<div style="margin-top: 1.5em; margin-bottom: 1.5em;">
<iframe width="560" height="315" src="https://www.youtube.com/embed/_sqzehuqWXw?si=SY04mCk9MhiBPFLP" title="Dexorder on YouTube" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
</template>
<script setup>
</script>
<style scoped lang="scss">
</style>

View File

@@ -14,7 +14,7 @@ hero:
- theme: alt - theme: alt
text: Documentation text: Documentation
link: /introduction link: /introduction
image: /dexorder-diag-hero.png # image: /dexorder-diag-hero.png
# light: /dexorder_full_lightmode.svg # light: /dexorder_full_lightmode.svg
# dark: /dexorder_full_darkmode.svg # dark: /dexorder_full_darkmode.svg
@@ -45,4 +45,3 @@ features:
details: Running on Arbitrum One means orders trade fast with cheap gas. More L2's coming soon. details: Running on Arbitrum One means orders trade fast with cheap gas. More L2's coming soon.
--- ---
<iframe width="560" height="315" src="https://www.youtube.com/embed/hY0zFFLjsUI?si=1ws5B_JiAtt0d5I9" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen style="margin:auto;margin-top:2em"></iframe>

View File

@@ -1,6 +1,9 @@
<script setup>
import IntroVideo from "./components/IntroVideo.vue"
</script>
# What is Dexorder? # What is Dexorder?
<iframe width="560" height="315" src="https://www.youtube.com/embed/hY0zFFLjsUI?si=1ws5B_JiAtt0d5I9" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe> <IntroVideo/>
Dexorder is an on-chain system providing advanced order management for DeFi traders. Dexorder is noncustodial and runs on the [Arbitrum One](https://arbitrum.io/) network (more L2's coming soon). Dexorder is an on-chain system providing advanced order management for DeFi traders. Dexorder is noncustodial and runs on the [Arbitrum One](https://arbitrum.io/) network (more L2's coming soon).
@@ -43,7 +46,8 @@ See [Gas Fees](/fees#gas-fees) for more.
## Web Interface ## Web Interface
Creating dexorders couldn't be easier, using the charts you know and love by [TradingView](https://tradingview.com/). What you see on the chart is the order you get on-chain. Creating dexorders couldn't be easier, using the charts you know and love by
<a href="https://tradingview.com/" target="_blank">TradingView</a>. What you see on the chart is the order you get on-chain.
When you place orders from the website, your wallet signs your order, putting it into your trading vault on-chain. Similarly, actions like Cancel or Cancel All are also signed by your web wallet and sent directly to the blockchain. Dexorder's servers are not involved with any of these interactions, which are made directly from your web wallet to your on-chain vault. When you place orders from the website, your wallet signs your order, putting it into your trading vault on-chain. Similarly, actions like Cancel or Cancel All are also signed by your web wallet and sent directly to the blockchain. Dexorder's servers are not involved with any of these interactions, which are made directly from your web wallet to your on-chain vault.