diff --git a/components/aboutPage/AboutSection.js b/components/aboutPage/AboutSection.js index 3abc9ca..28dfeb4 100644 --- a/components/aboutPage/AboutSection.js +++ b/components/aboutPage/AboutSection.js @@ -1,31 +1,26 @@ import React from 'react'; import sign from '/public/images/signeture.png'; import Image from 'next/image'; +import { useTranslation } from 'next-i18next'; const AboutSection = (props) => { + const { t } = useTranslation('ourStory'); return (
- {/* Text Column — Show first on mobile, second on desktop */}
- Our Story -

Building Your American Dream.

+ {t('about.title')} +

{t('about.heading')}

-

- For many years, Janhanlaw has been more than just a law office - we’ve served as a guiding light for families pursuing their dreams. Founded on the principle that every person deserves expert legal representation regardless of their background, we've dedicated our careers to navigating the complex world of immigration law. -

-

- Our team combines deep legal expertise with genuine compassion, understanding that behind every case is a real person with real dreams. We've successfully helped families reunite, professionals advance their careers, and individuals find safety and protection in America. -

+

{t('about.paragraph1')}

+

{t('about.paragraph2')}

-

- “More than a law office, we are a guiding light for families pursuing their dreams.” -

+

{t('about.quote')}

{/*
@@ -41,7 +36,6 @@ const AboutSection = (props) => {
- {/* Image Column — Show second on mobile, first on desktop */}
About Image diff --git a/components/aboutPage/Donors.js b/components/aboutPage/Donors.js index 092bb56..b88b6f1 100644 --- a/components/aboutPage/Donors.js +++ b/components/aboutPage/Donors.js @@ -1,24 +1,27 @@ import React from 'react'; import Link from 'next/link' +import { useTranslation } from 'next-i18next'; const ClickHandler = () => { window.scrollTo(10, 0); } const Donors = () => { - + const { t } = useTranslation("aboutDonor"); return (
-

Ready to take the first step toward your American future?

+

{t("title")}

{/* Free Consultation */} - Call us Today + + {t("button")} +
diff --git a/components/aboutPage/SevicesSection.js b/components/aboutPage/SevicesSection.js index e2b226c..5cc3724 100644 --- a/components/aboutPage/SevicesSection.js +++ b/components/aboutPage/SevicesSection.js @@ -5,6 +5,7 @@ import "slick-carousel/slick/slick-theme.css"; import Link from 'next/link' import SectionTitle from "../SectionTitle/SectionTitle"; import { MissionVision } from "../../utils/constant.utils"; +import { useTranslation } from 'next-i18next'; const settings = { @@ -64,22 +65,23 @@ const ClickHandler = () => { } const ServicesSection = (props) => { + const { t } = useTranslation("aboutService"); return (
- +
- {MissionVision.map((service, srv) => ( -
+ {MissionVision.map((service, i) => ( +
- {service.sTitle} + {t(`services.${i}.title`)}
- {/*

{service.sTitle}

*/} -

{service.sTitle}

-

{service.description}

+

{t(`services.${i}.title`)}

+

{t(`services.${i}.description`)}

diff --git a/components/aboutPage/TestimonialSection.js b/components/aboutPage/TestimonialSection.js index 40fe226..ab0efb8 100644 --- a/components/aboutPage/TestimonialSection.js +++ b/components/aboutPage/TestimonialSection.js @@ -2,8 +2,10 @@ import React from 'react'; import sign from '/public/images/signeture.png'; import Image from 'next/image'; import Link from 'next/link'; +import { useTranslation } from 'next-i18next'; const TestimonialSection = (props) => { + const { t } = useTranslation("aboutMission"); return (
@@ -21,15 +23,13 @@ const TestimonialSection = (props) => {
- Our Mission -

Transforming Immigration Through Advocacy

+ {t("sectionTitle.subTitle")} +

{t("sectionTitle.title")}

-

- At Janahan law, our mission extends far beyond legal representation - we are dedicated to transforming the immigration experience through compassionate advocacy, strategic excellence, and unwavering commitment to justice. For many years, we have been a trusted source of support for individuals and families navigating the complexities of U.S. immigration law. -

+

{t("paragraph")}

- Know More + {t("button")}
diff --git a/components/aboutPage/TestimonialSection2.js b/components/aboutPage/TestimonialSection2.js index e7281e9..1716a1e 100644 --- a/components/aboutPage/TestimonialSection2.js +++ b/components/aboutPage/TestimonialSection2.js @@ -2,8 +2,10 @@ import React from 'react'; import sign from '/public/images/signeture.png'; import Image from 'next/image'; import Link from 'next/link'; +import { useTranslation } from 'next-i18next'; const TestimonialSection2 = (props) => { + const { t } = useTranslation("aboutRacial"); return (
@@ -14,15 +16,13 @@ const TestimonialSection2 = (props) => {
- Racial Justice -

Championing Equal Immigration Rights

+ {t("sectionTitle.subTitle")} +

{t("sectionTitle.title")}

-

- At Janahan law, we recognize that the pursuit of justice in immigration law cannot be separated from the fight against racial discrimination and systemic bias. For many years, we have seen how racial bias can impact immigration decisions, influencing processes such as consular interviews and court proceedings, and disproportionately affecting families from certain countries and communities. -

+

{t("paragraph")}

- Know More + {t("button")}
diff --git a/next-i18next.config.js b/next-i18next.config.js index 34240d4..a833fd8 100644 --- a/next-i18next.config.js +++ b/next-i18next.config.js @@ -4,7 +4,7 @@ module.exports = { locales: ['en', 'es'], localeDetection: false, }, - ns: ['common', 'menu', 'homeHero'], + ns: ['common', 'menu', 'homeHero' ,'ourStory', 'aboutService', 'aboutMission', 'aboutRacial', 'aboutDonor'], defaultNS: 'common', // localePath: './public/locales', }; diff --git a/package-lock.json b/package-lock.json index 8c7bc0f..28883be 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,5 +1,5 @@ { - "name": "politian", + "name": "janahan-law", "lockfileVersion": 2, "requires": true, "packages": { diff --git a/pages/about/index.js b/pages/about/index.js index 50c3782..8b72c8c 100644 --- a/pages/about/index.js +++ b/pages/about/index.js @@ -20,8 +20,8 @@ import TeamsSection from '../../components/aboutPage/TeamSection'; import TestimonialSection from '../../components/aboutPage/TestimonialSection'; import TestimonialSection2 from '../../components/aboutPage/TestimonialSection2'; import bg from '/public/images/about/about-banner.webp' - import { serverSideTranslations } from 'next-i18next/serverSideTranslations'; + const AboutPage = () => { return ( @@ -48,7 +48,7 @@ export default AboutPage; export async function getStaticProps({ locale }) { return { props: { - ...(await serverSideTranslations(locale, ['common', 'menu'])), // Add 'home', 'footer', etc. if needed + ...(await serverSideTranslations(locale, ['common', 'menu', 'ourStory', 'aboutService', 'aboutMission', 'aboutRacial', 'aboutDonor'])), // Add 'home', 'footer', etc. if needed }, }; } diff --git a/public/locales/en/aboutDonor.json b/public/locales/en/aboutDonor.json new file mode 100644 index 0000000..9611829 --- /dev/null +++ b/public/locales/en/aboutDonor.json @@ -0,0 +1,4 @@ +{ + "title": "Ready to take the first step toward your American future?", + "button": "Call us Today" +} diff --git a/public/locales/en/aboutMission.json b/public/locales/en/aboutMission.json new file mode 100644 index 0000000..082bea9 --- /dev/null +++ b/public/locales/en/aboutMission.json @@ -0,0 +1,8 @@ +{ + "sectionTitle": { + "subTitle": "Our Mission", + "title": "Transforming Immigration Through Advocacy" + }, + "paragraph": "At Janahan law, our mission extends far beyond legal representation - we are dedicated to transforming the immigration experience through compassionate advocacy, strategic excellence, and unwavering commitment to justice. For many years, we have been a trusted source of support for individuals and families navigating the complexities of U.S. immigration law.", + "button": "Know More" +} diff --git a/public/locales/en/aboutRacial.json b/public/locales/en/aboutRacial.json new file mode 100644 index 0000000..713de07 --- /dev/null +++ b/public/locales/en/aboutRacial.json @@ -0,0 +1,8 @@ +{ + "sectionTitle": { + "subTitle": "Racial Justice", + "title": "Championing Equal Immigration Rights" + }, + "paragraph": "At Janahan law, we recognize that the pursuit of justice in immigration law cannot be separated from the fight against racial discrimination and systemic bias. For many years, we have seen how racial bias can impact immigration decisions, influencing processes such as consular interviews and court proceedings, and disproportionately affecting families from certain countries and communities.", + "button": "Know More" +} diff --git a/public/locales/en/aboutService.json b/public/locales/en/aboutService.json new file mode 100644 index 0000000..b291c8e --- /dev/null +++ b/public/locales/en/aboutService.json @@ -0,0 +1,40 @@ +{ + "section": { + "subTitle": "OUR COMMITMENT", + "title": "Creating Pathways to the American Dream!" + }, + "services": [ + { + "title": "Leading Legal Establishment", + "description": "Our practice sets the standard for immigration law excellence, with a track record of successful cases spanning over two decades." + }, + { + "title": "Employment & Visa Solutions", + "description": "We specialize in work visas, employment-based green cards, and helping professionals achieve their career goals in America." + }, + { + "title": "Recognized Legal Excellence", + "description": "Our attorneys are recognized leaders in immigration law, with awards and peer recognition for outstanding service." + }, + { + "title": "Comprehensive Client Support", + "description": "From initial consultation to final approval, we provide complete support throughout your entire immigration journey." + }, + { + "title": "Leading Legal Establishment", + "description": "Our practice sets the standard for immigration law excellence, with a track record of successful cases spanning over two decades." + }, + { + "title": "Employment & Visa Solutions", + "description": "We specialize in work visas, employment-based green cards, and helping professionals achieve their career goals in America." + }, + { + "title": "Recognized Legal Excellence", + "description": "Our attorneys are recognized leaders in immigration law, with awards and peer recognition for outstanding service." + }, + { + "title": "Comprehensive Client Support", + "description": "From initial consultation to final approval, we provide complete support throughout your entire immigration journey." + } + ] +} diff --git a/public/locales/en/ourStory.json b/public/locales/en/ourStory.json new file mode 100644 index 0000000..5f48f38 --- /dev/null +++ b/public/locales/en/ourStory.json @@ -0,0 +1,9 @@ +{ + "about": { + "title": "Our Story", + "heading": "Building Your American Dream.", + "paragraph1": "For many years, Janhanlaw has been more than just a law office - we’ve served as a guiding light for families pursuing their dreams. Founded on the principle that every person deserves expert legal representation regardless of their background, we've dedicated our careers to navigating the complex world of immigration law.", + "paragraph2": "Our team combines deep legal expertise with genuine compassion, understanding that behind every case is a real person with real dreams. We've successfully helped families reunite, professionals advance their careers, and individuals find safety and protection in America.", + "quote": "“More than a law office, we are a guiding light for families pursuing their dreams.”" + } +} diff --git a/public/locales/es/aboutDonor.json b/public/locales/es/aboutDonor.json new file mode 100644 index 0000000..c902a45 --- /dev/null +++ b/public/locales/es/aboutDonor.json @@ -0,0 +1,4 @@ +{ + "title": "¿Listo para dar el primer paso hacia tu futuro en Estados Unidos?", + "button": "Llámanos Hoy" +} diff --git a/public/locales/es/aboutMission.json b/public/locales/es/aboutMission.json new file mode 100644 index 0000000..512eec9 --- /dev/null +++ b/public/locales/es/aboutMission.json @@ -0,0 +1,8 @@ +{ + "sectionTitle": { + "subTitle": "Nuestra Misión", + "title": "Transformando la Inmigración a Través de la Defensa" + }, + "paragraph": "En Janahan Law, nuestra misión va mucho más allá de la representación legal: estamos dedicados a transformar la experiencia migratoria mediante una defensa compasiva, una excelencia estratégica y un compromiso inquebrantable con la justicia. Durante muchos años, hemos sido una fuente confiable de apoyo para individuos y familias que navegan las complejidades de la ley de inmigración de los Estados Unidos.", + "button": "Saber Más" +} diff --git a/public/locales/es/aboutRacial.json b/public/locales/es/aboutRacial.json new file mode 100644 index 0000000..fe3fd1f --- /dev/null +++ b/public/locales/es/aboutRacial.json @@ -0,0 +1,8 @@ +{ + "sectionTitle": { + "subTitle": "Justicia Racial", + "title": "Defendiendo la Igualdad de Derechos Migratorios" + }, + "paragraph": "En Janahan Law, reconocemos que la búsqueda de la justicia en el derecho migratorio no puede separarse de la lucha contra la discriminación racial y el sesgo sistémico. Durante muchos años, hemos visto cómo los prejuicios raciales pueden afectar las decisiones migratorias, influyendo en procesos como entrevistas consulares y procedimientos judiciales, y afectando de manera desproporcionada a familias de ciertos países y comunidades.", + "button": "Saber Más" +} diff --git a/public/locales/es/aboutService.json b/public/locales/es/aboutService.json new file mode 100644 index 0000000..e74f8f8 --- /dev/null +++ b/public/locales/es/aboutService.json @@ -0,0 +1,40 @@ +{ + "section": { + "subTitle": "NUESTRO COMPROMISO", + "title": "¡Creando caminos hacia el Sueño Americano!" + }, + "services": [ + { + "title": "Establecimiento Jurídico Líder", + "description": "Nuestra práctica establece el estándar de excelencia en la ley de inmigración, con un historial de casos exitosos durante más de dos décadas." + }, + { + "title": "Soluciones de Empleo y Visas", + "description": "Nos especializamos en visas de trabajo, tarjetas de residencia basadas en empleo y en ayudar a los profesionales a alcanzar sus metas en Estados Unidos." + }, + { + "title": "Excelencia Jurídica Reconocida", + "description": "Nuestros abogados son líderes reconocidos en la ley de inmigración, con premios y reconocimiento de colegas por su destacado servicio." + }, + { + "title": "Apoyo Integral al Cliente", + "description": "Desde la consulta inicial hasta la aprobación final, brindamos apoyo completo en todo su proceso migratorio." + }, + { + "title": "Establecimiento Jurídico Líder", + "description": "Nuestra práctica establece el estándar de excelencia en la ley de inmigración, con un historial de casos exitosos durante más de dos décadas." + }, + { + "title": "Soluciones de Empleo y Visas", + "description": "Nos especializamos en visas de trabajo, tarjetas de residencia basadas en empleo y en ayudar a los profesionales a alcanzar sus metas en Estados Unidos." + }, + { + "title": "Excelencia Jurídica Reconocida", + "description": "Nuestros abogados son líderes reconocidos en la ley de inmigración, con premios y reconocimiento de colegas por su destacado servicio." + }, + { + "title": "Apoyo Integral al Cliente", + "description": "Desde la consulta inicial hasta la aprobación final, brindamos apoyo completo en todo su proceso migratorio." + } + ] +} diff --git a/public/locales/es/ourStory.json b/public/locales/es/ourStory.json new file mode 100644 index 0000000..41f446f --- /dev/null +++ b/public/locales/es/ourStory.json @@ -0,0 +1,9 @@ +{ + "about": { + "title": "Nuestra Historia", + "heading": "Construyendo tu Sueño Americano.", + "paragraph1": "Durante muchos años, Janhanlaw ha sido más que una oficina de abogados: hemos servido como una luz guía para las familias que persiguen sus sueños. Fundados en el principio de que toda persona merece representación legal experta sin importar su origen, hemos dedicado nuestras carreras a navegar el complejo mundo de la ley de inmigración.", + "paragraph2": "Nuestro equipo combina una profunda experiencia legal con una compasión genuina, entendiendo que detrás de cada caso hay una persona real con sueños reales. Hemos ayudado con éxito a familias a reunirse, a profesionales a avanzar en sus carreras y a individuos a encontrar seguridad y protección en América.", + "quote": "“Más que una oficina de abogados, somos una luz guía para las familias que persiguen sus sueños.”" + } +} diff --git a/utils/constant.utils.js b/utils/constant.utils.js index 6f35e19..b4ddb25 100644 --- a/utils/constant.utils.js +++ b/utils/constant.utils.js @@ -165,99 +165,43 @@ export const TabServices = [ export const MissionVision = [ { Id: '1', - sImgS: sImgS1, - sTitle: 'Leading Legal Establishment', slug: 'leading-legal-establishment', - description: 'Our practice sets the standard for immigration law excellence, with a track record of successful cases spanning over two decades.', - des2: 'Lacus, etiam sed est eu tempus need Temer diam congue laoret .', - des3: 'One way to categorize the activities is in terms of the professional’s area of expertise such as competitive analysis, corporate strategy the activities', icon: '/images/about/legal.webp', - ssImg1: sSingleimg1, - ssImg2: sSingleimg2, }, { Id: '2', - sImgS: sImgS2, - sTitle: 'Employment & Visa Solutions', slug: 'employment-visa-solutions', - description: 'We specialize in work visas, employment-based green cards, and helping professionals achieve their career goals in America.', - des2: 'Lacus, etiam sed est eu tempus need Temer diam congue laoret .', - des3: 'One way to categorize the activities is in terms of the professional’s area of expertise such as competitive analysis, corporate strategy the activities', icon: '/images/about/employment.webp', - ssImg1: sSingleimg1, - ssImg2: sSingleimg2, }, { Id: '3', - sImgS: sImgS3, - sTitle: 'Recognized Legal Excellence', slug: 'recognized-legal-excellence', - description: 'Our attorneys are recognized leaders in immigration law, with awards and peer recognition for outstanding service.', - des2: 'Lacus, etiam sed est eu tempus need Temer diam congue laoret .', - des3: 'One way to categorize the activities is in terms of the professional’s area of expertise such as competitive analysis, corporate strategy the activities', icon: '/images/about/recognized.webp', - ssImg1: sSingleimg1, - ssImg2: sSingleimg2, }, { Id: '4', - sImgS: sImgS4, - sTitle: 'Comprehensive Client Support', slug: 'comprehensive-client-support', - description: 'From initial consultation to final approval, we provide complete support throughout your entire immigration journey.', - des2: 'Lacus, etiam sed est eu tempus need Temer diam congue laoret .', - des3: 'One way to categorize the activities is in terms of the professional’s area of expertise such as competitive analysis, corporate strategy the activities', icon: '/images/about/comprehensive.webp', - ssImg1: sSingleimg1, - ssImg2: sSingleimg2, }, { Id: '1', - sImgS: sImgS1, - sTitle: 'Leading Legal Establishment', slug: 'leading-legal-establishment', - description: 'Our practice sets the standard for immigration law excellence, with a track record of successful cases spanning over two decades.', - des2: 'Lacus, etiam sed est eu tempus need Temer diam congue laoret .', - des3: 'One way to categorize the activities is in terms of the professional’s area of expertise such as competitive analysis, corporate strategy the activities', icon: '/images/about/legal.webp', - ssImg1: sSingleimg1, - ssImg2: sSingleimg2, }, { Id: '2', - sImgS: sImgS2, - sTitle: 'Employment & Visa Solutions', slug: 'employment-visa-solutions', - description: 'We specialize in work visas, employment-based green cards, and helping professionals achieve their career goals in America.', - des2: 'Lacus, etiam sed est eu tempus need Temer diam congue laoret .', - des3: 'One way to categorize the activities is in terms of the professional’s area of expertise such as competitive analysis, corporate strategy the activities', icon: '/images/about/employment.webp', - ssImg1: sSingleimg1, - ssImg2: sSingleimg2, }, { Id: '3', - sImgS: sImgS3, - sTitle: 'Recognized Legal Excellence', slug: 'recognized-legal-excellence', - description: 'Our attorneys are recognized leaders in immigration law, with awards and peer recognition for outstanding service.', - des2: 'Lacus, etiam sed est eu tempus need Temer diam congue laoret .', - des3: 'One way to categorize the activities is in terms of the professional’s area of expertise such as competitive analysis, corporate strategy the activities', icon: '/images/about/recognized.webp', - ssImg1: sSingleimg1, - ssImg2: sSingleimg2, }, { Id: '4', - sImgS: sImgS4, - sTitle: 'Comprehensive Client Support', slug: 'comprehensive-client-support', - description: 'From initial consultation to final approval, we provide complete support throughout your entire immigration journey.', - des2: 'Lacus, etiam sed est eu tempus need Temer diam congue laoret .', - des3: 'One way to categorize the activities is in terms of the professional’s area of expertise such as competitive analysis, corporate strategy the activities', icon: '/images/about/comprehensive.webp', - ssImg1: sSingleimg1, - ssImg2: sSingleimg2, }, ]