Commit 3bff5ee0 by sujata

changes update

1 parent 92810d73
......@@ -45,7 +45,7 @@ const Clientele = ({
src={logo.image}
alt={logo.altText}
fill
className="img-fluid image image w-100"
className="img-fluid image industry-logo"
/>
</div>
</SwiperSlide>
......
......@@ -69,11 +69,11 @@ const FunctionalAreas = () => {
<div className="section-title">
<span className="sub-title">SERVICES</span>
<Heading el="h2" heading="Functional Areas " className="h2" />
<p>
</div>
<p className="text-center">
Our people bring-in a blend of different skills and functional
expertise to deliver exceptional value.
</p>
</div>
<div className="row align-items-center">
{services &&
......
import React from "react";
import { Col, Container, Row } from "react-bootstrap";
import Heading from "../Heading";
const steps = [
{
stepNumber: "01",
title: "Step 1 - Discovery",
description: "lorem demo text lorem demo text",
align: "left", // This will determine the layout
},
{
stepNumber: "02",
title: "Step 2 - Analysis",
description: "lorem demo text lorem demo text",
align: "right",
},
{
stepNumber: "03",
title: "Step 3 - Implementation",
description: "lorem demo text lorem demo text",
align: "left",
},
{
stepNumber: "04",
title: "Step 4 - Analysis",
description: "lorem demo text lorem demo text",
align: "right",
},
// Add more steps as needed
];
const MethodMobile = () => {
const MethodMobile = ({ steps, heading, subTitle }) => {
return (
<>
<section className="method-mobile p-3 d-block d-md-none d-lg-none">
<div className="section-title">
<span className="sub-title">lorem demo</span>
<Heading el="h2" heading="Method" />
{subTitle && <span className="sub-title">{subTitle}</span>}
{heading && <Heading el="h2" heading={heading} />}
</div>
<Container>
<Row>
<div>
{steps.map((step, index) => (
<div
key={index}
className={`circle-container d-flex ${
step.align === "right" ? "circle-containertwo" : ""
}`}
>
{step.align === "left" && (
<>
<Col xs={4} sm={4}>
<div className="circle-method">
<p className="circle-number">{step.stepNumber}</p>
</div>
</Col>
<Col xs={8} sm={8} className="align-self-center">
<div className="circle-content">
<h6>{step.title}</h6>
<p>{step.description}</p>
</div>
</Col>
</>
)}
{step.align === "right" && (
<>
<Col xs={9} sm={9} className="align-self-center">
<div className="text-align-end circle-content-two">
<h6>{step.title}</h6>
<p>{step.description}</p>
</div>
</Col>
<Col xs={3} sm={3} >
<div className="circle-methodtwo">
<p className="circle-number">{step.stepNumber}</p>
</div>
</Col>
</>
)}
</div>
))}
</div>
{steps.map((step, index) => (
<div
key={index}
className={`circle-container d-flex ${
step.align === "right" ? "circle-containertwo" : ""
}`}
>
{step.align === "left" ? (
<>
<Col xs={4} sm={4}>
<div className="circle-method">
<p className="circle-number">{step.stepNumber}</p>
</div>
</Col>
<Col xs={8} sm={8} className="align-self-center">
<div className="circle-content">
<h6>{step.title}</h6>
<p>{step.description}</p>
</div>
</Col>
</>
) : (
<>
<Col xs={9} sm={9} className="align-self-center">
<div className="text-align-end circle-content-two">
<h6>{step.title}</h6>
<p>{step.description}</p>
</div>
</Col>
<Col xs={3} sm={3}>
<div className="circle-methodtwo">
<p className="circle-number">{step.stepNumber}</p>
</div>
</Col>
</>
)}
</div>
))}
</Row>
</Container>
</section>
......@@ -88,4 +57,11 @@ const MethodMobile = () => {
);
};
// Default props for flexibility
MethodMobile.defaultProps = {
steps: [],
heading: "Method",
subTitle: "",
};
export default MethodMobile;
......@@ -29,8 +29,9 @@ const MethodOne = ({
<div className="section-title">
<span className="sub-title">{sectionTitle}</span>
<Heading el="h2" heading={heading} />
<p>{descrption}</p>
</div>
<p className=" text-center mb-4 mb-lg-5">{descrption}</p>
<Row className="justify-content-center d-none d-sm-none d-lg-block">
<Swiper
spaceBetween={spaceBetween}
......
......@@ -97,13 +97,14 @@ const BudgetPanorama = () => {
<Container>
<div className="section-title">
<Heading heading={"Budget Panorama"} el="h2" />
<p>
</div>
<p className="text-center mb-3 mb-lg-5">
Budget Panorama is an annual edition released soon after the Union
budget is presented by the Finance Minister of India. Budget
Panorama gives a panoramic view of the recently announced budget
with the objective of educating the audience.
</p>
</div>
<Row className="align-items-center">
{services &&
services.map((service, index) => (
......
......@@ -10,9 +10,9 @@ const banners = [
{
imageSrc: "/images/banner/business_advisory.webp ",
pageTitle: "Business Advisory ",
homePageUrl: "/",
homePageText: "Home",
activePageText: "BA",
homePageUrl: "/client-servicing",
homePageText: "Client Servicing",
activePageText: "Business Advisory ",
},
// Add more banners as needed
];
......
......@@ -11,13 +11,14 @@ import MethodOne from "@/components/reuseables/services/MethodOne";
import MethodTwoSection from "@/components/reuseables/services/MethodTwo";
import Clientele from "@/components/reuseables/Clientele";
import MethodTwoMobile from "@/components/reuseables/services/MethodMobile";
import MethodMobile from "@/components/reuseables/services/MethodMobile";
const banners = [
{
imageSrc: "/images/banner/virtual_fc.webp",
pageTitle: "Virtual FC & CFO Services",
homePageUrl: "/",
homePageText: "Home",
activePageText: "CFO",
homePageUrl: "/client-servicing",
homePageText: "Client Servicing",
activePageText: "Virtual FC & CFO Services",
},
];
const CFOData = [
......@@ -229,7 +230,7 @@ const CfoPage = () => {
<div className="ptb-100">
<Clientele partners={partners} />
</div>
<MethodTwoMobile />
</>
);
};
......
......@@ -60,12 +60,13 @@ const ClientService = () => {
<div className="section-title">
<span className="sub-title">ADVITH CONSULTING</span>
<Heading el="h2" heading="What we do?" />
<p>
</div>
<p className="text-center mb-4 mb-lg-5">
At Advith Consulting, we harness our wealth of Knowledge and
expertise, leveraging our People to deliver exceptional Client
satisfaction.
</p>
</div>
<div className="position-relative px-md-4 mt-md-5 mt-2">
<Swiper
spaceBetween={30}
......@@ -133,7 +134,7 @@ const ClientService = () => {
))}
<Swiper pagination={{ clickable: true }} />
</Swiper>
<div className="cust_nav swiper-nav text-center mt-md-4 mt-2">
<div className="cust_nav swiper-nav text-center mt-md-4 mt-0 ">
<SwiperNav />
</div>
</div>
......
......@@ -11,9 +11,9 @@ const banners = [
{
imageSrc: "/images/banner/risk_advisory.webp",
pageTitle: " Risk Advisory",
homePageUrl: "/",
homePageText: "Home",
activePageText: "RA",
homePageUrl: "/client-servicing",
homePageText: "Client Servicing",
activePageText: "Risk Advisory",
},
// Add more banners as needed
];
......
......@@ -12,9 +12,9 @@ const banners = [
{
imageSrc: "/images/banner/transaction_advisory.webp",
pageTitle: " Transaction Advisory",
homePageUrl: "/",
homePageText: "Home",
activePageText: "TA",
homePageUrl: "/client-servicing",
homePageText: "Client Servicing",
activePageText: "Transaction Advisory",
},
// Add more banners as needed
];
......
......@@ -11,13 +11,13 @@ const ContactInfo = () => {
<Row className="align-items-center">
<Col lg={6} md={12}>
<div className="contact-content">
<span className="sub-title">CONTACT US</span>
{/* <span className="sub-title">CONTACT US</span> */}
<Heading
el="h2"
heading="Contact Us With Your Details & Ready To Start"
heading="Contact Us"
/>
<p>
Reach out to Advith Consulting today to explore our range of services and how we can help you achieve your business objectives with expertise and efficiency.
Let's get ready to Sail Together: Provide us with your Contact Details & we'll make sure that you Kick off in no time
</p>
<Row className="justify-content-center">
......
......@@ -115,13 +115,15 @@ const CorpediaPage = () => {
<div className="corpedia-page-area pt-70 pb-100 bg-light">
<Container>
<div className="section-title">
<Heading heading={"Corpedia"} el="h2" />
<p>
<Heading heading={"Corpedia"} className="mb-0" />
</div>
<p className="text-center mb-3 mb-lg-5">
Get the scoop on India's corporate legal happenings with Corpedia,
your go-to source for updates and analysis.
</p>
</div>
<Row className="align-items-center">
{services &&
services.map((service, index) => (
......
......@@ -30,7 +30,7 @@ const KnowledgeData = [
const AboutContent = () => {
return (
<>
<div className="what-we-do-area ptb-100">
<div className="what-we-do-area pt-100">
<Container>
<Row className="align-items-center flex-column-reverse flex-lg-row">
<Col lg={6} md={12}>
......
......@@ -55,17 +55,18 @@ const services = [
const ClientService = () => {
return (
<>
<div className="services-area pt-100 pb-5">
<div className="services-area pt-md-100 pb-5">
<Container>
<div className="section-title">
<span className="sub-title">ADVITH CONSULTING</span>
<Heading el="h2" heading="What we do?" />
<p>
</div>
<p className="text-center">
At Advith Consulting, we harness our wealth of Knowledge and
expertise, leveraging our People to deliver exceptional Client
satisfaction.
</p>
</div>
<div className="position-relative px-md-4 mt-md-5 mt-2">
<Swiper
spaceBetween={30}
......
......@@ -132,7 +132,7 @@ const PartnerSlider = () => {
))}
</Swiper>
<div className="cust_nav">
<div className="cust_nav mt-4 mt-md-0">
<SwiperNav />
</div>
</div>
......
......@@ -41,6 +41,7 @@ const Corpedia = () => {
<Row>
<Col lg={8} md={8} sm={12}>
<div className="text-align-left">
<Heading heading={"Corpedia"} el="h2" />
<p className="mb-lg-5 mb-3">
......
......@@ -18,7 +18,7 @@ const serviceContent = [
const KnowledgeContent = () => {
return (
<>
<div className="knowledge-area ptb-100">
<div className="knowledge-area pt-md-5 pt-0 pb-5">
<Container>
<Row className="align-items-center">
<Col lg={5} md={12}>
......
......@@ -32,7 +32,7 @@ const AdvisoryBoard = () => {
<Container>
<div className="section-title">
<Heading el="h2" heading="Advisory Board" />
<Heading el="h2" heading="Advisory Board"/>
</div>
{advisoryBoardData.map((member, index) => (
<Row key={index} className="row align-items-center">
......@@ -58,7 +58,7 @@ const AdvisoryBoard = () => {
</div>
</Col>
<Col lg={7} md={7} className="order-1 order-md-2">
<Heading el="h2" heading={member.name} />
<Heading el="h2" heading={member.name} className="advisory-title" />
<div className="testimonial-content">
<p>{member.description}</p>
</div>
......@@ -67,7 +67,7 @@ const AdvisoryBoard = () => {
) : (
<>
<Col lg={7} md={7} className="order-1 order-md-1">
<Heading el="h2" heading={member.name} />
<Heading el="h2" heading={member.name} className="advisory-title" />
<div className="testimonial-content">
{/* <span className="sub-title">{member.title}</span> */}
......
......@@ -225,13 +225,14 @@ const TaxWire = () => {
<Container>
<div className="section-title">
<Heading heading={"Tax Wire"} el="h2" />
<p>
</div>
<p className="text-center mb-3 mb-lg-5 ">
Navigating the complex terrain of India's tax landscape? TaxWire
is your reliable companion, serving up the latest news,
developments, and insights to help you stay informed and in the
know.
</p>
</div>
<Row className="align-items-center">
{services &&
services.map((service, index) => (
......
......@@ -82,7 +82,9 @@ const Footer = () => {
<ul>
<li>
<span>Call : </span>
<a href="tel:+91-6364133111">+91-6364133111</a>
<a href="tel:+91-6364133111">+91-6364133111</a> <span> | </span> <a href="tel:08026719484">080-2671 9484</a>
</li>
<li>
<span>Email : </span>
......
import nodemailer from "nodemailer";
export default function (req, res) {
// let nodemailer = require("nodemailer");
const transporter = nodemailer.createTransport({
port: 465,
host: "smtp.gmail.com",
host: "smtp-mail.outlook.com",
port: 587,
secure: false,
auth: {
user: "dheeraj.realatte@gmail.com",
pass: "pamoocbnzfqhigdf",
user: "info@advithconsulting.in",
pass: "!nf0@2019",
},
secure: true,
});
var maillist = ["sujatalogicloop@gmail.com"];
var maillist = ["info@advithconsulting.in"];
const mailData = {
from: ["sujatalogicloop@gmail.com"],
from: "info@advithconsulting.in",
to: maillist,
subject: `Advith Consulting Contact Form Leads`,
html: `
......
import nodemailer from "nodemailer";
export default function (req, res) {
// let nodemailer = require("nodemailer");
const transporter = nodemailer.createTransport({
port: 465,
host: "smtp.gmail.com",
host: "smtp-mail.outlook.com",
port: 587,
secure: false,
auth: {
user: "dheeraj.realatte@gmail.com",
pass: "pamoocbnzfqhigdf",
user: "info@advithconsulting.in",
pass: "!nf0@2019",
},
secure: true,
});
var maillist = ["sujatalogicloop@gmail.com"];
var maillist = ["info@advithconsulting.in"];
const mailData = {
from: ["sujatalogicloop@gmail.com"],
from: "info@advithconsulting.in",
to: maillist,
subject: `Advith Consulting Service Form Leads`,
html: `
......
......@@ -7,7 +7,7 @@ const banners = [
{
imageSrc: "/images/banner/blog.webp",
pageTitle: "Reporting on Fraudulent Activities by Auditors",
homePageUrl: "/",
homePageUrl: "/blog",
homePageText: "Blog",
activePageText: "Reporting on Fraudulent Activities by Auditors",
},
......
......@@ -6,10 +6,10 @@ import React from "react";
const banners = [
{
imageSrc: "/images/banner/blog.webp",
pageTitle: "Reporting on Fraudulent Activities by Auditors",
homePageUrl: "/",
pageTitle: "Start-up and Angel Tax",
homePageUrl: "/blog",
homePageText: "Blog",
activePageText: "Reporting on Fraudulent Activities by Auditors",
activePageText: "Start-up and Angel Tax",
},
];
const Angeltax = () => {
......@@ -23,7 +23,7 @@ const Angeltax = () => {
<div className="blog-details-desc">
<div className="article-image">
<Image
src="/images/blog/blog-2.jpeg"
src="/images/blog/blogs3.jpeg"
layout="fill"
alt="image"
className="image-fluid image"
......
......@@ -7,7 +7,7 @@ const banners = [
{
imageSrc: "/images/banner/blog.webp",
pageTitle: "Tax Deducted at Source under Income Tax Act",
homePageUrl: "/",
homePageUrl: "/blog",
homePageText: "Blog",
activePageText: "Tax Deducted at Source under Income Tax Act",
},
......
......@@ -87,14 +87,17 @@
font-size: 15px;
line-height: 30px;
}
.default-btn-one{
padding: 10px 20px 10px 20px;
}
.section-title {
max-width: 90%;
}
.section-title {
padding-bottom: 20px;
margin-bottom: 30px;
padding-bottom: 3px;
margin-bottom: 20px;
max-width: 95%;
}
......@@ -230,7 +233,7 @@
.main-banner-content h1 {
font-size: 22px;
margin-bottom: 12px;
line-height: 8.8vw;
line-height: 8vw;
}
.main-banner-content p {
......@@ -619,17 +622,22 @@
.testimonial-content {
padding-right: 0;
text-align: center;
padding-left: 14px;
}
.testimonial-content .sub-title {
font-size: 13px;
}
.testimonial-content h2 {
font-size: 24px;
padding-bottom: 1px;
}
.advisory-title{
padding-left: 14px;
}
.testimonial-content h2::before {
right: 0;
margin-left: auto;
......@@ -1930,6 +1938,16 @@
.cust_nav {
position: unset;
justify-content: center;
/* padding-top: 30px; */
}
.default-btn-two{
padding: 12px 50px 11px 17px;
font-size: 13px;
}
.default-btn-two i {
width: 30px;
height: 31px;
line-height: 31px;
}
}
......
......@@ -225,7 +225,7 @@ p:last-child {
max-width: 720px;
text-align: center;
position: relative;
padding-bottom: 25px;
padding-bottom: 15px;
margin-left: auto;
margin-right: auto;
margin-bottom: 40px;
......@@ -4866,6 +4866,9 @@ Partner Area CSS
display: inline-block !important;
}
.image.industry-logo {
width: 316px !important;
}
/*================================================
Blog Area CSS
=================================================*/
......@@ -4904,7 +4907,7 @@ Blog Area CSS
background-size: cover;
}
.single-blog-post .post-image::after {
/* .single-blog-post .post-image::after {
position: absolute;
left: 0;
content: "";
......@@ -4918,7 +4921,7 @@ Blog Area CSS
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
}
} */
.single-blog-post .post-content {
padding: 15px 30px 30px;
......@@ -8034,7 +8037,7 @@ Modal CSS
border: 1px solid;
padding: 14px;
border-radius: 50%;
width: 20vw;
width: 19vw;
background-color: var(--mainColor);
color: white !important;
text-align: center;
......@@ -8070,7 +8073,7 @@ Modal CSS
.circle-methodtwo {
border: 1px solid;
border-radius: 50%;
width: 20vw;
width: 19vw;
background-color: var(--mainColor);
color: white !important;
text-align: center;
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!