aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/components/sections/landing/hero.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/website/ts/components/sections/landing/hero.tsx')
-rw-r--r--packages/website/ts/components/sections/landing/hero.tsx31
1 files changed, 0 insertions, 31 deletions
diff --git a/packages/website/ts/components/sections/landing/hero.tsx b/packages/website/ts/components/sections/landing/hero.tsx
deleted file mode 100644
index 489757286..000000000
--- a/packages/website/ts/components/sections/landing/hero.tsx
+++ /dev/null
@@ -1,31 +0,0 @@
-import * as React from 'react';
-
-import { Button } from 'ts/components/button';
-import { Hero } from 'ts/components/hero';
-import { LandingAnimation } from 'ts/components/heroImage';
-
-import { HeroAnimation } from 'ts/components/heroAnimation';
-import { WebsitePaths } from 'ts/types';
-
-export const SectionLandingHero = () => (
- <Hero
- title="Powering Decentralized Exchange"
- isLargeTitle={true}
- isFullWidth={true}
- description="0x is an open protocol that enables the peer-to-peer exchange of assets on the Ethereum blockchain."
- figure={<LandingAnimation image={<HeroAnimation />} />}
- actions={<HeroActions />}
- />
-);
-
-const HeroActions = () => (
- <>
- <Button href="https://0x.org/docs" isInline={true}>
- Get Started
- </Button>
-
- <Button to={WebsitePaths.Why} isTransparent={true} isInline={true}>
- Learn More
- </Button>
- </>
-);