File size: 373 Bytes
f5071ca
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import CareerCta from "./CareerCta";
import ContactFormSection from "./ContactFormSection";
import ContactImg from "./ContactImg";

export default function Contact() {
  return (
    <main className="bg-gray-900">
      <article className="relative bg-gray-900">
        <ContactImg />
        <ContactFormSection />
      </article>
      <CareerCta />
    </main>
  );
}