Skip to content
Merged
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
9 changes: 3 additions & 6 deletions app/[lang]/(hyperjump)/products/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,7 @@ import {
productsCommercialData1Text,
productsCommercialData1Title,
productsCommercialData2Text,
productsCommercialData2Title,
productsCommercialData3Text,
productsCommercialData3Title
productsCommercialData2Title
} from "@/locales/.generated/server";
import type { SupportedLanguage } from "@/locales/.generated/types";

Expand All @@ -26,9 +24,8 @@ export function getCommercialProduct(lang: SupportedLanguage) {
{
title: productsCommercialData1Title(lang),
description: productsCommercialData1Text(lang),
image: "/images/products/startGPT.svg"
// urlLearnMore: "https://startgpt.hyperjump.tech/",
// url: "https://startgpt.hyperjump.tech/"
image: "/images/products/startGPT.svg",
urlLearnMore: "https://startgpt.hyperjump.tech/"
}
];
}
Expand Down
4 changes: 2 additions & 2 deletions app/components/grid-items.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ export function GridItems({
<Button
asChild
variant="outline"
className="border-hyperjump-blue text-hyperjump-blue hover:bg-hyperjump-blue w-full hover:text-white">
className="text-hyperjump-blue hover:bg-hyperjump-blue w-full border-gray-300 hover:text-white">
<Link
href={repoUrl}
target="_blank"
Expand All @@ -296,7 +296,7 @@ export function GridItems({
<Button
asChild
variant="outline"
className="border-hyperjump-blue text-hyperjump-blue hover:bg-hyperjump-blue w-full hover:text-white">
className="text-hyperjump-blue hover:bg-hyperjump-blue w-full border-gray-300 hover:text-white">
<Link
href={`${repoUrl}/fork`}
target="_blank"
Expand Down
Loading