page about us & page contact us and responsive

This commit is contained in:
Ehsan
2024-08-16 20:41:53 +03:30
parent fd3b82143b
commit d3f967ca67
22 changed files with 297 additions and 4 deletions
+13
View File
@@ -0,0 +1,13 @@
import Call from "./Call"
import Connect from "./Connect"
function ContactUsPage() {
return (
<div className="w-full pt-[120px] mt-[56px] padding-responsive flex flex-col lg:flex-row items-center justify-between h-fit">
<Call />
<Connect />
</div>
)
}
export default ContactUsPage