forked from UKSOURCE/hailearning.edu.vn
15 lines
445 B
TypeScript
15 lines
445 B
TypeScript
import "./contact.css";
|
|
import ContactHero from "../components/contactus/ContactHero";
|
|
import DepartmentDirectory from "../components/contactus/DepartmentDirectory";
|
|
import ContactSplit from "../components/contactus/ContactSplit";
|
|
|
|
export default function ContactUsPage() {
|
|
return (
|
|
<main className="contact-page min-h-screen bg-gray-50 pb-20">
|
|
<ContactHero />
|
|
<DepartmentDirectory />
|
|
<ContactSplit />
|
|
</main>
|
|
);
|
|
}
|