@@ -52,7 +52,6 @@ import { BASE_TIME_UNIT } from "@/lib/constants"
52
52
import CasesColumn from "./_components/CasesColumn"
53
53
import EnterpriseContactForm from "./_components/ContactForm/lazy"
54
54
import FeatureCard from "./_components/FeatureCard"
55
- import { ENTERPRISE_MAILTO } from "./constants"
56
55
import type { Case , EcosystemPlayer , Feature } from "./types"
57
56
import { parseActivity } from "./utils"
58
57
@@ -63,6 +62,8 @@ import { fetchTotalEthStaked } from "@/lib/api/fetchTotalEthStaked"
63
62
import EthGlyph from "@/public/images/assets/svgs/eth-diamond-rainbow.svg"
64
63
import heroImage from "@/public/images/heroes/enterprise-hero-white.png"
65
64
65
+ const GET_IN_TOUCH_ID = "get-in-touch"
66
+
66
67
const FeaturesSwiper = dynamic ( ( ) => import ( "./_components/FeaturesSwiper" ) , {
67
68
ssr : false ,
68
69
loading : ( ) => (
@@ -295,7 +296,7 @@ const Page = async ({ params }: { params: { locale: Lang } }) => {
295
296
buttons = { [
296
297
{
297
298
content : t ( "page-enterprise-hero-cta" ) ,
298
- href : ENTERPRISE_MAILTO ,
299
+ href : `# ${ GET_IN_TOUCH_ID } ` ,
299
300
matomo : {
300
301
eventCategory : "enterprise" ,
301
302
eventAction : "CTA" ,
@@ -484,7 +485,7 @@ const Page = async ({ params }: { params: { locale: Lang } }) => {
484
485
</ section >
485
486
486
487
< section
487
- id = "team"
488
+ id = { GET_IN_TOUCH_ID }
488
489
className = "flex w-full flex-col items-center gap-y-12 rounded-4xl border border-accent-a/20 bg-gradient-to-b from-accent-a/5 to-accent-a/10 px-4 py-10 md:py-12"
489
490
>
490
491
< div className = "flex flex-col items-center gap-2" >
0 commit comments