Commit c6d8db2e by sujata

chnages home page

1 parent 0266eb58
......@@ -106,7 +106,7 @@ const PageBanner = ({ banners = [] }) => {
className="img-fluid postion-absolute"
/>
</div>
<Container fluid className="ps-5">
<Container fluid className="ps-md-5 pe-md-5">
<div className="page-title-content">
<h2>{banner.pageTitle}</h2>
<ul>
......
......@@ -27,7 +27,7 @@ const ContactInfo = () => {
<div>
<h3>Office</h3>
<p>
<span> Reg office:</span> Nanda commercial complex and health center,
......@@ -48,7 +48,7 @@ const ContactInfo = () => {
<i className="ri-phone-line"></i>
</div>
<div>
<h3>Landline & Mobile</h3>
{/* <h3>Landline & Mobile</h3> */}
<p>
<span>Call:</span>
<a href="tel:08204200985">0820-4200985</a>
......@@ -67,7 +67,7 @@ const ContactInfo = () => {
<i className="ri-mail-star-line"></i>
</div>
<div>
<h3>Email</h3>
{/* <h3>Email</h3> */}
<p>
<a href="mailto: Support@advithitec.in">
......
......@@ -87,7 +87,7 @@ const AboutContent = ({ Knowledges, KnowledgeTab }) => {
href={item?.CTA?.URL ? item?.CTA?.URL : "#"}
className="default-btn mb-3 mb-md-0"
>
Know More
Read More
<i className="ri-arrow-right-line"></i>
</Link>
)}
......
......@@ -66,22 +66,22 @@ const areasofExpertise = [
},
];
const AreasofExpertise = ({Areas}) => {
// console.log(Areas, "areas");
const AreasofExpertise = ({AreasofExpertiseList}) => {
console.log(AreasofExpertiseList, "areas");
return (
<>
<div className="areas-of-expertise pt-100 pb-70 bglight">
<Container>
<Container fluid className="ps-md-5 pe-md-5">
<div className="section-title">
<Heading el="h2" heading="Areas of Expertise" className="h2" />
</div>
<Row className="justify-content-center">
{Areas &&
Areas.map((item, index) => {
// console.log("Areas", item);
{AreasofExpertiseList &&
AreasofExpertiseList.map((item, index) => {
console.log("Areas", item);
return (
<Col lg={6} md={6} key={item.id}>
<Col lg={4} md={4} key={item.id}>
<div className="single-projects-box">
<motion.div
variants={fadeIn(index * 1)}
......
......@@ -89,10 +89,10 @@ const HomeBlog = ({ data }) => {
<li>
<i className="ri-calendar-2-line"></i> {post?.Date}
</li>
<li>
{/* <li>
<i className="ri-user-voice-line"></i>
{post?.Author}
</li>
</li> */}
</ul>
<h3>
<Link href={`/blog/${post?.slug}`}>{post.Title}</Link>
......
......@@ -11,9 +11,9 @@ const PartnerSlider = ({ Clientel = [] }) => {
{/* Duplicate logos for seamless looping */}
{Clientel.concat(Clientel).map((logo, index) => (
<div
className="single-partner-item d-flex justify-content-center align-items-center px-3"
className="single-partner-item d-flex justify-content-center align-items-center"
key={`${logo.id}-${index}`}
style={{ flex: "0 0 auto", width: "350px", height: "80px" }}
style={{ flex: "0 0 auto", width: "250px", height: "80px" }}
>
<Image
src={cleanImage(logo?.logos?.[0]?.url)}
......
......@@ -10,7 +10,7 @@ const Footer = () => {
<div className="container-fluid ps-5">
<div className="row justify-content-between">
<div className="col-lg-3 col-sm-6 col-md-6">
<div className="single-footer-widget">
<div className="single-footer-widget text-center">
<Link href="/" className="logo">
<Image
src="/images/Advithlogo.svg"
......@@ -78,12 +78,13 @@ const Footer = () => {
<h3>Address</h3>
<ul>
<li>
<span>Reg office:</span> Nanda commercial complex and health center,
<span><h3 className="mb-1 office-heading">Reg office:</h3></span> Nanda commercial complex and health center,
court road, Udupi -576101
</li>
<li><span>Phone No:</span> <a href="tel: 820-4200985">0820-4200985</a> </li>
{/* <li><span>Phone No:</span> <a href="tel: 820-4200985">0820-4200985</a> </li> */}
<li>
<span> Corporate office:</span> No.988,1st Floor,13th Cross, Banashankari II Stage, Bangalore -560070
<span><h3 className="mb-1 office-heading"> Corporate office:</h3>
</span> No.988,1st Floor,13th Cross, Banashankari II Stage, Bangalore -560070
</li>
</ul>
</div>
......@@ -115,13 +116,14 @@ const Footer = () => {
<h3>Contact</h3>
<ul>
<li>
<span>Call: </span>
<span> <i className="ri-phone-line"></i></span>
<a href="tel:+91-08026719484">
080-26719484
</a>
</li>
<li>
<span>Email: </span> <a href="mailto:info@advithconsulting.in">
<span> <i className="ri-mail-star-line"></i> </span> <a href="mailto:info@advithconsulting.in">
support@advithitec.in
</a>
</li>
......
......@@ -13,6 +13,7 @@ import TechnicalExpertise from "@/container/ClientServicing/ TechnicalExpertise"
import ConversionCode from "@/components/reuseables/ConversionCode/ConversionCode";
import WhatWeDo from "@/components/reuseables/WhatWeDo";
import Seo from "@/components/reuseables/Seo/Seo";
import AreasofExpertise from "@/container/Home/AreasofExpertise";
const ClientServicingPage = ({ ClientPage, conversionData }) => {
const banners = [
......@@ -24,7 +25,8 @@ const ClientServicingPage = ({ ClientPage, conversionData }) => {
activePageText: ClientPage?.Banner?.Heading,
},
];
const technicalexpertise = ClientPage?.Technicalexpertise;
const technicalexpertise = ClientPage?.Technicallist;
// console.log(technicalexpertise,"technicalexpertise")
const serviceHeading = ClientPage?.whatwedoheading;
const serviceData = ClientPage?.whatwedo;
const dispatch = useDispatch();
......@@ -42,7 +44,8 @@ const ClientServicingPage = ({ ClientPage, conversionData }) => {
<PageBanner banners={banners} />
<ConversionCode code={code} />
<WhatWeDo service={serviceData} serviceheading={serviceHeading} />
<TechnicalExpertise technicalexpertise={technicalexpertise} />
{/* <TechnicalExpertise technicalexpertise={technicalexpertise} /> */}
<AreasofExpertise AreasofExpertiseList={technicalexpertise} />
<FunctionalAreas functionarea={FunctionArea} />
<Industries industry={IndustryData} />
<CallBackRequest />
......@@ -65,6 +68,7 @@ export async function getServerSideProps() {
"FunctionalAreas.Icon",
"Technicalexpertise",
"Technicalexpertise.Technicallist",
"Technicalexpertise.Technicallist.Image",
"seo",
"seo.metaImage",
"seo.schema",
......
......@@ -55,8 +55,8 @@ export default function Home({ homepage, conversionData }) {
<AboutContent Knowledges={Knowledgeshack} KnowledgeTab={KnowledgeTab} />
<People people={people} />
<ClientService service={serviceData} />
<TechnicalExpertise AreasExpertiseTitle={AreasExpertiseTitle} AreasofExpertiseList={AreasofExpertiseList}/>
{/* <AreasofExpertise Areas={Areas} /> */}
{/* <TechnicalExpertise AreasExpertiseTitle={AreasExpertiseTitle} AreasofExpertiseList={AreasofExpertiseList}/> */}
<AreasofExpertise AreasExpertiseTitle={AreasExpertiseTitle} AreasofExpertiseList={AreasofExpertiseList} />
<FunctionalAreas functionarea={functionarea} />
<Industries industry={industry} />
<HomeBlog data={blogData} />
......@@ -85,7 +85,7 @@ export async function getServerSideProps() {
"whatwedo.CTA",
"AreasExpertiseTitle.Heading",
"AreasExpertiseTitle.Image",
"AreasofExpertiselists",
"AreasofExpertiselists.Image",
"FunctionalAreas.Icon",
"Industry.Image",
"Industry.CTA",
......
......@@ -9687,3 +9687,16 @@ ul.pagination.custom-pagination {
.weoffer-box-budget:hover h3 {
color: white;
}
.contact-btn{
background-color: #f8971f;
padding: 10px 25px !important;
align-items: center;
justify-items: center;
margin-top: 1rem;
color: #fff!important;
border-radius: 7px;
}
.office-heading{
color: #393641!important;
font-size: 20px!important;
}
\ No newline at end of file
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!