diff --git a/web/e.cash/components/layout.js b/web/e.cash/components/layout.js new file mode 100644 index 000000000..c6e23856f --- /dev/null +++ b/web/e.cash/components/layout.js @@ -0,0 +1,33 @@ +import Head from 'next/head'; + +const Layout = ({ + metaTitle = 'eCash | Wealth Redefined', + metaDescription = 'Derived from one of the most trusted names in the cryptocurrency space, what was once known as BCHA is now eCash. eCash is the natural continuation of the Bitcoin Cash project. Realizing the vision of the legendary Milton Friedman, eCash follows through on key promises such as the innovative Avalanche consensus layer while also introducing concepts never before seen in a Bitcoin project such as staking, fork-free network upgrades, and subchains. Look for the ticker symbol XEC on exchanges, wallets, or price charts, and take your first step towards true financial freedom.', + children, +}) => { + return ( + <> + + + + {metaTitle} + + + + + + + + +
{children}
+ + ); +}; + +export default Layout; diff --git a/web/e.cash/pages/index.js b/web/e.cash/pages/index.js index 48909c2db..70862564e 100644 --- a/web/e.cash/pages/index.js +++ b/web/e.cash/pages/index.js @@ -1,3 +1,8 @@ +import Layout from '../components/layout'; export default function Home() { - return
e.Cash site v2
; + return ( + +
e.Cash site v2
+
+ ); }