Skip to content

Commit 02a8005

Browse files
committed
fix: capitalization and unnecessary const route
1 parent 4241863 commit 02a8005

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

apps/web/components/partners/builders-mcp-section.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ export default function BuildersMcpSection() {
205205
className="bg-cherry-bright flex h-10 items-center justify-center px-6 py-2 rounded-full cursor-pointer hover:opacity-90 transition-opacity w-full sm:w-auto"
206206
>
207207
<span className="font-['InterMedium'] text-[14px] leading-[1.4] text-white text-center">
208-
Explore {BUILDERS_PORTAL_ROUTE.replace(/^https?:\/\//, '')}
208+
Explore builders.sodax.com
209209
</span>
210210
</a>
211211
</motion.div>

apps/web/components/shared/marketing-header.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export function MarketingHeader({ backLink, backText }: MarketingHeaderProps) {
2525

2626
// Set defaults based on current path
2727
const defaultBackLink = isCommunityPage ? COMMUNITY_ROUTE : PARTNERS_ROUTE;
28-
const defaultBackText = isCommunityPage ? '← community' : '← Partners';
28+
const defaultBackText = isCommunityPage ? '← community' : '← partners';
2929

3030
const finalBackLink = backLink ?? defaultBackLink;
3131
const finalBackText = backText ?? defaultBackText;

0 commit comments

Comments
 (0)