turkmentv_front/app/(main)/contact_us/page.tsx

18 lines
393 B
TypeScript
Raw Normal View History

2024-08-19 12:44:56 +00:00
import ContactForm from '@/components/contact_us/ContactForm';
import ContactMap from '@/components/contact_us/ContactMap';
const Contact = () => {
return (
<div>
<div className="container">
<div className="inner py-8 max-w-[1000px] w-full m-auto">
<ContactForm />
<ContactMap />
</div>
</div>
</div>
);
};
export default Contact;