@@ -55,29 +55,24 @@ <h2 class="text-xl font-semibold text-gray-800 mb-4">Contact Details</h2>
5555
5656 < div class ="flex justify-between ">
5757 < dt class ="font-medium "> MCA Address</ dt >
58- < dd class ="text-right "> 123 Company Street, Business City</ dd >
58+ < dd class ="text-right " id =" cd_mca_address " > 123 Company Street, Business City</ dd >
5959 </ div >
6060
6161 < div class ="flex justify-between ">
6262 < dt class ="font-medium "> Address</ dt >
63- < dd class ="text-right "> 456 Corporate Avenue, Business City</ dd >
63+ < dd class ="text-right " id =" cd_address " > 456 Corporate Avenue, Business City</ dd >
6464 </ div >
6565
66- < div class ="flex justify-between ">
67- < dt class ="font-medium "> Website Address</ dt >
68- < dd class ="text-right "> www.example.com</ dd >
69- </ div >
70-
71- < div class ="flex justify-between "> < dt class ="font-medium "> Phone</ dt > < dd class ="text-right "> +91 1010101010</ dd > </ div >
72- < div class ="flex justify-between "> < dt class ="font-medium "> Mobile</ dt > < dd class ="text-right "> +91 2020202020</ dd > </ div >
73- < div class ="flex justify-between "> < dt class ="font-medium "> Fax</ dt > < dd class ="text-right "> +91 3030303030</ dd > </ div >
66+ < div class ="flex justify-between "> < dt class ="font-medium "> Phone</ dt > < dd class ="text-right " id ="cd_phone "> +91 1010101010</ dd > </ div >
67+ < div class ="flex justify-between "> < dt class ="font-medium "> Mobile</ dt > < dd class ="text-right " id ="cd_mobile "> +91 2020202020</ dd > </ div >
68+ < div class ="flex justify-between "> < dt class ="font-medium "> Fax</ dt > < dd class ="text-right " id ="cd_fax "> +91 3030303030</ dd > </ div >
7469 < div class ="flex justify-between items-center ">
7570 < dt class ="font-medium "> Email</ dt >
76- < dd class ="text-right "> < a href ="mailto:info@example.com " class ="text-indigo-600 hover:underline "> info@example.com</ a > </ dd >
71+ < dd class ="text-right "> < a href ="mailto:info@example.com " class ="text-indigo-600 hover:underline " id =" cd_email " > info@example.com</ a > </ dd >
7772 </ div >
7873 < div class ="flex justify-between items-center ">
7974 < dt class ="font-medium "> Website</ dt >
80- < dd class ="text-right "> < a href ="https://www.example.com " target ="_blank " class ="text-indigo-600 hover:underline "> https://www.example.com</ a > </ dd >
75+ < dd class ="text-right "> < a href ="https://www.example.com " target ="_blank " class ="text-indigo-600 hover:underline " id =" cd_website " > https://www.example.com</ a > </ dd >
8176 </ div >
8277
8378 < div class ="pt-2 flex items-center gap-3 mt-2 ">
@@ -155,7 +150,13 @@ <h4 class="text-lg font-semibold text-gray-800 mb-3">Business Description</h4>
155150 document . getElementById ( "bi_industry" ) . innerText = companyData [ "Sub Industry" ] ;
156151
157152 // contact information
158- // document.getElementById("bi_industry").innerText = companyData["Sub Industry"];
153+ document . getElementById ( "cd_mca_address" ) . innerText = companyData [ "MCA Address" ] ;
154+ document . getElementById ( "cd_address" ) . innerText = companyData [ "Address" ] ;
155+ document . getElementById ( "cd_phone" ) . innerText = companyData [ "Phone no" ] ;
156+ document . getElementById ( "cd_mobile" ) . innerText = companyData [ "mobile No" ] ;
157+ document . getElementById ( "cd_fax" ) . innerText = companyData [ "Fax no" ] ;
158+ document . getElementById ( "cd_email" ) . innerText = companyData [ "Email" ] ;
159+ document . getElementById ( "cd_website" ) . innerText = companyData [ "Website" ] ;
159160
160161
161162 // business description
@@ -171,4 +172,4 @@ <h4 class="text-lg font-semibold text-gray-800 mb-3">Business Description</h4>
171172
172173
173174</ body >
174- </ html >
175+ </ html >
0 commit comments