Skip to content

Commit

Permalink
feat: implement gpu pricing page structure
Browse files Browse the repository at this point in the history
  • Loading branch information
hiroyukikumazawa committed Aug 21, 2024
1 parent 0c0326c commit c311d2d
Show file tree
Hide file tree
Showing 38 changed files with 2,140 additions and 19 deletions.
12 changes: 12 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
"@tailwindcss/typography": "^0.5.10",
"@tanstack/react-query": "^4.29.7",
"@tanstack/react-query-devtools": "^4.32.6",
"@types/lodash": "^4.17.7",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"astro": "^4.0.7",
Expand All @@ -41,6 +42,7 @@
"clsx": "^2.0.0",
"fuse.js": "^6.6.2",
"hastscript": "^8.0.0",
"lodash": "^4.17.21",
"lucide-react": "^0.279.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
Expand Down
12 changes: 12 additions & 0 deletions src/assets/akash-logo-primary.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 13 additions & 0 deletions src/assets/aws-logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 14 additions & 0 deletions src/assets/azure-logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions src/assets/cpu-brand.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions src/assets/endpoint-brand.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 14 additions & 0 deletions src/assets/gcp-logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions src/assets/gpu-brand.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions src/assets/icons/arrow-up-right.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions src/assets/ips-brand.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions src/assets/memory-brand.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions src/assets/storage-brand.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/components/header/hamburger-menu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const navigation = [
{ name: "Community", href: "/community/akash-insiders/" },
{ name: "Blog", href: "/blog" },
{ name: "Docs", href: "/docs" },
{ name: "GPU Pricing", href: "/gpus" },
{ name: "Pricing & Earnings", href: "/pricing/gpus" },
];

export default function HamburgerMenu({
Expand Down
2 changes: 1 addition & 1 deletion src/components/header/header.astro
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ ${disableSticky ? "" : "sticky top-0 z-[30]"}

<NavLink href="/blog" currentPath={pathname}>Blog</NavLink>
<NavLink href="/docs" currentPath={pathname}>Docs</NavLink>
<NavLink href="/gpus" currentPath={pathname}>GPU Pricing</NavLink>
<NavLink href="/pricing/gpus" currentPath={pathname}>Pricing & Earnings</NavLink>
</div>
</div>

Expand Down
Loading

0 comments on commit c311d2d

Please sign in to comment.