Skip to content

Commit 2bf868b

Browse files
committed
chore: use enterpris inquiry
1 parent 67bf100 commit 2bf868b

File tree

6 files changed

+41
-8
lines changed

6 files changed

+41
-8
lines changed

src/components/pages/batch-change/landing/landing.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import Hero from '../hero';
22
import Features from '../features';
33
import PromoBatchChange from '@/components/pages/home/promo-batch-change';
4-
import Community from '@/components/shared/community';
4+
import EnterpriseInquiry from '@/components/shared/enterprise-inquiry';
55
import RelatedPosts from '@/components/pages/blog/related-posts';
66
import { BlogPost } from '@/types/blog-post';
77

@@ -16,7 +16,7 @@ const Landing = ({ posts }: RelatedPostsProps) => {
1616
<PromoBatchChange />
1717
<Features />
1818
<RelatedPosts posts={posts} module="LANDING" />
19-
<Community />
19+
<EnterpriseInquiry />
2020
</>
2121
);
2222
};

src/components/pages/data-masking/landing/landing.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import Hero from '../hero';
22
import Features from '../features';
33
import PromoDataMasking from '@/components/pages/home/promo-data-masking';
4-
import Community from '@/components/shared/community';
4+
import EnterpriseInquiry from '@/components/shared/enterprise-inquiry';
55
import RelatedPosts from '@/components/pages/blog/related-posts';
66
import { BlogPost } from '@/types/blog-post';
77

@@ -16,7 +16,7 @@ const Landing = ({ posts }: RelatedPostsProps) => {
1616
<PromoDataMasking />
1717
<Features />
1818
<RelatedPosts posts={posts} module="LANDING" />
19-
<Community />
19+
<EnterpriseInquiry />
2020
</>
2121
);
2222
};

src/components/pages/schema-migration/landing/landing.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import Hero from '../hero';
22
import Features from '../features';
33
import PromoAutomationChanges from '@/components/pages/home/promo-automation-changes';
4-
import Community from '@/components/shared/community';
4+
import EnterpriseInquiry from '@/components/shared/enterprise-inquiry';
55
import RelatedPosts from '@/components/pages/blog/related-posts';
66
import { BlogPost } from '@/types/blog-post';
77

@@ -17,7 +17,7 @@ const Landing = ({ posts, subjects }: RelatedPostsProps) => {
1717
<PromoAutomationChanges />
1818
<Features />
1919
<RelatedPosts posts={posts} module="LANDING" />
20-
<Community />
20+
<EnterpriseInquiry />
2121
</>
2222
);
2323
};

src/components/pages/sql-editor/landing/landing.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import Hero from '../hero';
22
import Features from '../features';
33
import PromoSQLEditor from '@/components/pages/home/promo-sql-editor';
4-
import Community from '@/components/shared/community';
4+
import EnterpriseInquiry from '@/components/shared/enterprise-inquiry';
55
import RelatedPosts from '@/components/pages/blog/related-posts';
66
import { BlogPost } from '@/types/blog-post';
77

@@ -17,7 +17,7 @@ const Landing = ({ posts, subjects }: RelatedPostsProps) => {
1717
<PromoSQLEditor />
1818
<Features />
1919
<RelatedPosts posts={posts} module="LANDING" />
20-
<Community />
20+
<EnterpriseInquiry />
2121
</>
2222
);
2323
};
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
import Logos from '@/components/pages/contact/logos';
2+
import ContactForm from '@/components/shared/contact-form';
3+
import { ENTERPRISE_INQUIRY } from '@/lib/forms';
4+
5+
const EnterpriseInquiry = () => {
6+
return (
7+
<section className="container enterprise-inquiry mt-20 lg:mt-14 md:mt-10 sm:mt-8">
8+
<div className="flex items-center justify-between border-t border-gray-90 pt-16 lg:pt-8 md:pt-10 sm:pt-8">
9+
<div className="container gap-x-grid relative grid grid-cols-12 sm:grid-cols-4">
10+
<div className="col-span-5 lg:col-span-8 sm:col-span-full">
11+
<h1 className="font-title text-80 font-semibold leading-none 2xl:text-64 lg:text-56 sm:text-40">
12+
Enterprise Inquiry
13+
</h1>
14+
<p className="mt-3 text-18">
15+
Flexible usage-based plan, volume discount available. Contact us for scheduling demo
16+
and pricing details.
17+
</p>
18+
</div>
19+
<ContactForm
20+
className="col-span-6 col-start-7 row-span-4 rounded-2xl bg-white p-8 shadow-dark-big lg:col-span-full lg:my-10 md:my-8 md:p-6 sm:p-5 sm:px-4 xs:my-7"
21+
formId={ENTERPRISE_INQUIRY}
22+
/>
23+
<Logos />
24+
</div>
25+
</div>
26+
</section>
27+
);
28+
};
29+
30+
export default EnterpriseInquiry;
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import EnterpriseInquiry from './enterprise-inquiry';
2+
3+
export default EnterpriseInquiry;

0 commit comments

Comments
 (0)