-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #318 from greymass/funding-page
Funding page
- Loading branch information
Showing
15 changed files
with
216 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
<script lang="ts"> | ||
import { cn } from '$lib/utils/style'; | ||
let props = $props(); | ||
</script> | ||
|
||
<dd class="grow text-balance break-all text-right tabular-nums">{@render props.children()}</dd> | ||
<dd class={cn('grow text-balance break-all text-right tabular-nums', props.class)}> | ||
{@render props.children()} | ||
</dd> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,13 @@ | ||
import type { PageLoad } from './$types'; | ||
import * as m from '$lib/paraglide/messages'; | ||
|
||
export const load: PageLoad = async () => { | ||
return { | ||
title: 'Fund Account', | ||
subtitle: 'Purchase EOS tokens to fund your account', | ||
title: m.fund_account(), | ||
subtitle: m.fund_account_description(), | ||
pageMetaTags: { | ||
title: 'Fund Account', | ||
description: 'Purchase EOS tokens to fund your account' | ||
title: m.fund_account(), | ||
description: m.fund_account_seo_description() | ||
} | ||
}; | ||
}; |