Docker config

This commit is contained in:
mukesh13
2025-06-16 15:53:12 +05:30
commit da3df17022
411 changed files with 24117 additions and 0 deletions

View File

@ -0,0 +1,18 @@
import React from 'react';
import ContactForm from './ContactForm';
import ContactInfo from './ContactInfo';
const ContactSection = () => {
return (
<section className="py-10 md:py-16 lg:py-6">
<div className="container mx-auto max-w-none px-4">
<div className="flex flex-col lg:flex-row gap-6">
<ContactInfo />
<ContactForm />
</div>
</div>
</section>
);
};
export default ContactSection;