Skip to content
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
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/components/footer/footer.astro
Original file line number Diff line number Diff line change
Expand Up @@ -131,11 +131,11 @@ const links = [
},
{
title: "Economics Paper",
link: "https://ipfs.io/ipfs/QmdV52bF7j4utynJ6L11RgG93FuJiUmBH1i7pRD6NjUt6B",
link: "/economics",
},
{
title: "White Paper",
link: "https://ipfs.io/ipfs/QmVwsi5kTrg7UcUEGi5UfdheVLBWoHjze2pHy4tLqYvLYv",
link: "/whitepaper",
},
{
title: "Blog",
Expand Down
38 changes: 38 additions & 0 deletions src/pages/economics.astro
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>
38 changes: 38 additions & 0 deletions src/pages/whitepaper.astro
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">
Copy link
Contributor

@hiroyukikumazawa hiroyukikumazawa Nov 2, 2024

Choose a reason for hiding this comment

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

@forbesus this too

<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
Copy link
Contributor

Choose a reason for hiding this comment

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

@forbesus please update this to Redirecting to Akash Whitepaper.

</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>