-
Notifications
You must be signed in to change notification settings - Fork 31
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: create sub pages for whitepaper and economics #405
Open
forbesus
wants to merge
1
commit into
akash-network:main
Choose a base branch
from
forbesus:main
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+78
−2
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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 |
---|---|---|
@@ -0,0 +1,38 @@ | ||
--- | ||
import Layout from "@/layouts/layout.astro"; | ||
const redirectUrl = "https://ipfs.io/ipfs/QmdV52bF7j4utynJ6L11RgG93FuJiUmBH1i7pRD6NjUt6B"; | ||
--- | ||
|
||
<Layout title="Redirecting to Economic Resources"> | ||
<head> | ||
<meta http-equiv="refresh" content={`0; url=${redirectUrl}`} /> | ||
</head> | ||
<div class="relative overflow-hidden"> | ||
<div class="container"> | ||
<div class="border-b border-[#d9d9d9] pb-[40px] pt-5 lg:pt-[60px] text-center"> | ||
<h1 class="text-xl font-bold md:text-3xl lg:text-4xl leading-tight"> | ||
Redirecting to Economic Resources | ||
</h1> | ||
<p class="mt-4 text-sm text-gray-600 md:mt-6 md:text-lg md:leading-relaxed"> | ||
You’re being redirected to our economic resources for a deeper insight into our platform. If you’re not automatically redirected, please click below. | ||
</p> | ||
|
||
<div class="mt-8"> | ||
<a | ||
href={redirectUrl} | ||
target="_blank" | ||
class="inline-flex items-center justify-center rounded-lg bg-primary px-6 py-3 text-white text-base font-semibold hover:bg-primary/90" | ||
> | ||
Visit Economic Resources | ||
</a> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="container mt-[90px] text-center"> | ||
<p class="text-sm text-gray-500"> | ||
If redirection does not happen, please <a href={redirectUrl} class="text-primary underline">click here</a> to proceed manually. | ||
</p> | ||
</div> | ||
</Layout> |
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 |
---|---|---|
@@ -0,0 +1,38 @@ | ||
--- | ||
import Layout from "@/layouts/layout.astro"; | ||
const redirectUrl = "https://ipfs.io/ipfs/QmVwsi5kTrg7UcUEGi5UfdheVLBWoHjze2pHy4tLqYvLYv"; | ||
--- | ||
|
||
<Layout title="Redirecting to Whitepaper"> | ||
<head> | ||
<meta http-equiv="refresh" content={`0; url=${redirectUrl}`} /> | ||
</head> | ||
<div class="relative overflow-hidden"> | ||
<div class="container text-center"> | ||
<div class="border-b border-[#d9d9d9] pb-[40px] pt-5 lg:pt-[60px] text-center"> | ||
<h1 class="text-xl font-bold md:text-3xl lg:text-4xl leading-tight"> | ||
Redirecting to Whitepaper | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @forbesus please update this to |
||
</h1> | ||
<p class="mt-4 text-sm text-gray-600 md:mt-6 md:text-lg md:leading-relaxed"> | ||
You are being redirected to our whitepaper, where you can explore in-depth insights into our platform. If redirection doesn’t happen automatically, please click the button below. | ||
</p> | ||
|
||
<div class="mt-8"> | ||
<a | ||
href={redirectUrl} | ||
target="_blank" | ||
class="inline-flex items-center justify-center rounded-lg bg-primary px-6 py-3 text-white text-base font-semibold hover:bg-primary/90" | ||
> | ||
Access Whitepaper | ||
</a> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="container mt-[90px] text-center"> | ||
<p class="text-sm text-gray-500"> | ||
If automatic redirection fails, <a href={redirectUrl} class="text-primary underline">click here</a> to access the whitepaper manually. | ||
</p> | ||
</div> | ||
</Layout> |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@forbesus this too