Devendra174's picture
Upload folder using huggingface_hub
f5071ca verified
raw
history blame contribute delete
373 Bytes
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>
);
}