Skip to content

Commit

Permalink
New content
Browse files Browse the repository at this point in the history
  • Loading branch information
ryangoree committed Jan 18, 2024
1 parent 2ddeaf6 commit 732e29f
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 14 deletions.
4 changes: 2 additions & 2 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ function App() {
<Route path="/" element={<Home />} />
<Route path="/about" element={<About />} />
{/* TODO: Remove hardcoded URL */}
<Route path="/uk" element={<UKRedirect to="https://uk.delv.tech" />} />
<Route path="/uk" element={<Redirect to="https://uk.delv.tech" />} />
</Routes>
</div>
</>
Expand All @@ -25,7 +25,7 @@ function App() {

export default App;

function UKRedirect({ to }: { to: string }) {
function Redirect({ to }: { to: string }) {
window.location.replace(to);
return <></>;
}
12 changes: 6 additions & 6 deletions src/pages/About.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,9 @@ export function About() {
(Appropriate) Openness
</h3>
<p>
We believe power of transparency and feedback, from how we work
across our teams to contributing open source software for the
benefit of all, while also recognizing time is a scarce
We believe power in the of transparency and feedback, from how
we work across our teams to contributing open source software
for the benefit of all, while also recognizing time is a scarce
resource.
</p>
</div>
Expand Down Expand Up @@ -144,9 +144,9 @@ export function About() {
</h3>
<p>
Extraordinary claims require extraordinary proof. We are
committed to research, develop, and ship our work with clear and
convincing results. We ruthlessly prioritize towards producing
these results.
committed to research, development, and shipping our work with
clear and convincing results. We ruthlessly prioritize towards
producing these results.
</p>
</div>
<div className="basis-[440px] max-lg:basis-auto">
Expand Down
13 changes: 7 additions & 6 deletions src/pages/Home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export function Home() {
logoSrc={hyperdriveLogo}
logoAltText="Hyperdrive"
logoClassName="-mb-10"
description="Hyperdrive is an automated market maker for fixed and variable yields."
description="Hyperdrive is a new Automated Market Maker (AMM) for fixed and variable yields featuring terms on demand and single-sided liquidity provisioning that no longer requires capital to be rolled over &mdash; it's everlasting."
arc={hyperdriveCornerArc}
arcClassName="opacity-100"
onClick={() => openDrawer("hyperdrive")}
Expand Down Expand Up @@ -163,11 +163,12 @@ export function Home() {

<div className="w-[440px] max-lg:w-full absolute right-[10vw] bottom-[10vw] max-lg:static mt-6">
<p className="opacity-80 text-lg font-blanka leading-snug mb-8 [text-shadow:0_0_5px_black,1px_1px_black]">
Hyperdrive is a protocol for trading interest-bearing assets at a
discount, which can be redeemed for their face value at maturity. Go
long to lock in a predictable rate of return, go short to maximize
exposure to the variable rate, or market-make to profit from
directional market shifts. Yield exposure at your control.
Hyperdrive is a new AMM for fixed and variable yield positions
underpinned by a novel pricing mechanism. It enables terms on-demand
and removes the need for liquidity providers to roll over their
capital allocations. Additionally, its mechanism design enables a
more efficient, symmetrical yield market and is open source for
others to build on.
</p>
</div>
</ProjectDrawer>
Expand Down

2 comments on commit 732e29f

@vercel
Copy link

@vercel vercel bot commented on 732e29f Jan 18, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@vercel
Copy link

@vercel vercel bot commented on 732e29f Jan 18, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.