This commit is contained in:
Alaguraj0361 2025-08-14 16:32:25 +05:30
commit f33a28fe73
24 changed files with 287 additions and 292 deletions

View File

@ -1,10 +1,10 @@
import blogImg1 from "/public/images/blog/img-1.jpg";
import blogImg2 from "/public/images/blog/img-2.jpg";
import blogImg3 from "/public/images/blog/img-3.jpg";
import blogImg1 from "/public/images/blog/blog-1.webp";
import blogImg2 from "/public/images/blog/blog-2.webp";
import blogImg3 from "/public/images/blog/blog-3.webp";
import blogSingleImg1 from "/public/images/blog/blog-single/img-1.jpg";
import blogSingleImg2 from "/public/images/blog/blog-single/img-2.jpg";
import blogSingleImg3 from "/public/images/blog/blog-single/img-3.jpg";
import blogSingleImg1 from "/public/images/blog/blog-detail-1.webp";
import blogSingleImg2 from "/public/images/blog/blog-detail-2.webp";
import blogSingleImg3 from "/public/images/blog/blog-detail-3.webp";
const blogs = [
{
@ -38,7 +38,7 @@ const blogs = [
<h3>Your Next Steps</h3>
<p>Don't let TPS changes catch you unprepared. Schedule a consultation with qualified immigration counsel to understand your options and develop a strategy for your family's future. Every situation is unique, and what works for one person may not apply to your circumstances.
At Janhanlaw, we've helped hundreds of TPS holders navigate these transitions successfully. Our multilingual team understands the complexity of changing immigration policies and works tirelessly to protect our clients' rights and futures in America.
At Janhan law, we've helped hundreds of TPS holders navigate these transitions successfully. Our multilingual team understands the complexity of changing immigration policies and works tirelessly to protect our clients' rights and futures in America.
Contact us today for a comprehensive case evaluation. Your American dream doesn't have to end with TPS changes - let us help you find the pathway to permanent protection.
</p>
@ -91,7 +91,7 @@ Consider backup options like O-1, L-1, or TN status if not selected.
</p>
<h3>Get Expert Help</h3>
<p>H-1B preparation requires months of strategic planning and expert legal guidance. At Janhanlaw, our employment immigration team achieves exceptional approval rates through meticulous preparation.
<p>H-1B preparation requires months of strategic planning and expert legal guidance. At Janhan law, our employment immigration team achieves exceptional approval rates through meticulous preparation.
Schedule your H-1B consultation today. Don't let another season pass without maximizing your success chances.</p>
<blockquote>
"This article provides general guidance only. Consult qualified immigration counsel for your specific situation."
@ -158,7 +158,7 @@ Maintain valid status when possible to preserve flexibility and avoid complicati
<h3>Expert Strategy Required</h3>
<p>Family immigration involves complex timing decisions and strategic choices that can save years of separation or create permanent entry bars.
At Janhanlaw, we specialize in finding creative solutions to family separation. Our team regularly identifies alternative pathways that reduce wait times from decades to months.
At Janhan law, we specialize in finding creative solutions to family separation. Our team regularly identifies alternative pathways that reduce wait times from decades to months.
Schedule your consultation today. Let us find the fastest pathway to reunite your family.
</p>

View File

@ -21,7 +21,7 @@ const Error = (props) => {
<div className="error-message">
<h3>Oops! Page Not Found!</h3>
<p>Were sorry but we cant seem to find the page you requested. This might be because you have typed the web address incorrectly.</p>
<Link onClick={ClickHandler} href="/home" className="theme-btn"> Back to home</Link>
<Link onClick={ClickHandler} href="/" className="theme-btn"> Back to home</Link>
</div>
</div>
</div>

View File

@ -1,101 +1,47 @@
import React from 'react';
import Link from 'next/link';
import BlogSidebar from '../BlogSidebar/BlogSidebar.js';
import VideoModal from '../ModalVideo/VideoModal';
import blogs from '../../api/blogs';
import Image from 'next/image.js';
import React from "react";
import blogs from '../../api/blogs'
import Link from "next/link";
import SectionTitle from "../SectionTitle/SectionTitle";
import Image from "next/image";
const ClickHandler = () => {
window.scrollTo(10, 0);
};
}
const BlogList = (props) => {
const BlogSection = () => {
return (
<section className="wpo-blog-pg-section section-padding">
<section className="wpo-blog-section section-padding" id="blog">
<div className="container">
<div className="row">
<div className={`col col-lg-12 ${props.blRight}`}>
<div className="wpo-blog-content">
<div className="row">
{blogs.map((blog, bitem) => (
<div className="col-lg-4 col-md-6 col-12" key={bitem}>
<div className={`post ${blog.blClass}`}>
<div className="entry-media">
<Image src={blog.blogSingleImg} alt="" />
{/* <VideoModal /> */}
</div>
<div className="entry-meta">
<ul>
{/* <li><i className="fi flaticon-comment-white-oval-bubble"></i> Comments {blog.comment} </li> */}
<li>
<i className="fi flaticon-calendar"></i> {blog.create_at}
</li>
<li>
<i className="fi flaticon-user"></i>
<Link onClick={ClickHandler} href={'/blog-single/[slug]'} as={`/blog-single/${blog.slug}`}>
{blog.authorTitle}
</Link>
</li>
</ul>
</div>
<div className="entry-details">
<h3 style={{
whiteSpace: 'nowrap',
overflow: 'hidden',
textOverflow: 'ellipsis',
width: '100%',
display: 'block',
}}>
<Link
onClick={ClickHandler}
href={`/blog/${blog.slug}`}
>
{blog.title}
</Link>
</h3>
<p>
{blog.para}
</p>
<Link
onClick={ClickHandler}
href={`/blog/${blog.slug}`}
className="read-more"
>
Continue Reading
</Link>
</div>
<div className="wpo-blog-items">
<div className="row">
{blogs.map((blog, bl) => (
<div className="col col-lg-4 col-md-6 col-12" key={bl}>
<div className="wpo-blog-item">
<div className="wpo-blog-img">
<Image src={blog.screens} alt="" />
</div>
<div className="wpo-blog-content">
{/* <ul>
<li><a href="blog-single.html">{blog.create_at}</a></li>
<li>by: <Link onClick={ClickHandler} href={'/blog-single/[slug]'} as={`/blog-single/${blog.slug}`}>{blog.authorTitle}</Link></li>
</ul> */}
<h2><Link onClick={ClickHandler} href={'/blog-single/[slug]'} as={`/blog-single/${blog.slug}`}>{blog.title}</Link></h2>
<div className="entry-details">
<p>
{blog.para}
</p>
<Link className="more" onClick={ClickHandler} href={'/blog-single/[slug]'} as={`/blog-single/${blog.slug}`}>Know More</Link>
</div>
</div>
))}
</div>
</div>
{/* <div className="pagination-wrapper pagination-wrapper-left">
<ul className="pg-pagination">
<li>
<Link href="/blog-left-sidebar" aria-label="Previous">
<i className="fi ti-angle-left"></i>
</Link>
</li>
<li className="active"><Link href="/blog-left-sidebar">1</Link></li>
<li><Link href="/blog-left-sidebar">2</Link></li>
<li><Link href="/blog-left-sidebar">3</Link></li>
<li>
<Link href="/blog-left-sidebar" aria-label="Next">
<i className="fi ti-angle-right"></i>
</Link>
</li>
</ul>
</div> */}
</div>
))}
</div>
{/* <BlogSidebar blLeft={props.blLeft}/> */}
</div>
</div>
</section>
);
};
}
export default BlogList;
export default BlogSection;

View File

@ -23,12 +23,17 @@ const BlogSection = () => {
<Image src={blog.screens} alt="" />
</div>
<div className="wpo-blog-content">
<ul>
{/* <ul>
<li><a href="blog-single.html">{blog.create_at}</a></li>
<li>by: <Link onClick={ClickHandler} href={'/blog-single/[slug]'} as={`/blog-single/${blog.slug}`}>{blog.authorTitle}</Link></li>
</ul>
</ul> */}
<h2><Link onClick={ClickHandler} href={'/blog-single/[slug]'} as={`/blog-single/${blog.slug}`}>{blog.title}</Link></h2>
<Link className="more" onClick={ClickHandler} href={'/blog-single/[slug]'} as={`/blog-single/${blog.slug}`}>Continue Reading</Link>
<div className="entry-details">
<p>
{blog.para}
</p>
<Link className="more" onClick={ClickHandler} href={'/blog-single/[slug]'} as={`/blog-single/${blog.slug}`}>Know More</Link>
</div>
</div>
</div>
</div>

View File

@ -8,184 +8,212 @@ const menus = [
{
id: 1,
title: 'Home',
link: '/home',
submenu: [
{
id: 11,
title: 'Main Home',
link: '/home'
},
{
id: 12,
title: 'Election Home',
link: '/home2'
},
{
id: 13,
title: 'Male Candidate',
link: '/home3'
},
{
id: 14,
title: 'Female Candidate',
link: '/home4'
},
]
link: '/',
// submenu: [
// {
// id: 11,
// title: 'Main Home',
// link: '/home'
// },
// {
// id: 12,
// title: 'Election Home',
// link: '/home2'
// },
// {
// id: 13,
// title: 'Male Candidate',
// link: '/home3'
// },
// {
// id: 14,
// title: 'Female Candidate',
// link: '/home4'
// },
// ]
},
{
id: 4,
title: 'Our Approach',
link: '/our-approach',
},
{
id: 2,
title: 'About',
link: '/about',
},
{
id: 6,
title: 'Campaign',
link: '/campaign',
submenu: [
{
id: 61,
title: 'Campaign',
link: '/campaign',
id: 11,
title: 'Our Mission',
link: '/about/our-mission'
},
{
id: 62,
title: 'Campaign Style 2',
link: '/campaign-2'
},
{
id: 63,
title: 'Campaign Style 3',
link: '/campaign-3'
},
{
id: 64,
title: 'Campaign Single',
link: '/campaign-single/Support-for-Womans'
},
]
},
{
id: 3,
title: 'Pages',
link: '/',
submenu: [
{
id: 31,
title: 'Gallery',
link: '/gallery'
},
{
id: 322,
title: 'Testimonial',
link: '/testimonial'
},
{
id: 385,
title: 'Team',
link: '/team',
},
{
id: 386,
title: 'Team Single',
link: '/team-single/Esther-Howard'
},
{
id: 388,
title: 'Services',
link: '/service'
},
{
id: 389,
title: 'Services Single',
link: '/service-single/Economic-Establishment'
},
{
id: 371,
title: 'Shop',
link: '/shop',
},
{
id: 375,
title: 'Shop Single',
link: '/product-single/The-Audacity-of-Hope'
},
{
id: 376,
title: 'Cart',
link: '/cart'
},
{
id: 377,
title: 'Checkout',
link: '/checkout'
},
{
id: 33,
title: 'FAQ',
link: '/faq'
},
{
id: 39,
title: 'Volunteer',
link: '/volunteer'
},
{
id: 34,
title: '404 Error',
link: '/404'
},
{
id: 35,
title: 'Login',
link: '/login'
},
{
id: 36,
title: 'Register',
link: '/register'
id: 12,
title: 'Racial-Justice',
link: '/about/racial-justice'
},
]
},
{
// {
// id: 6,
// title: 'Campaign',
// link: '/campaign',
// submenu: [
// {
// id: 61,
// title: 'Campaign',
// link: '/campaign',
// },
// {
// id: 62,
// title: 'Campaign Style 2',
// link: '/campaign-2'
// },
// {
// id: 63,
// title: 'Campaign Style 3',
// link: '/campaign-3'
// },
// {
// id: 64,
// title: 'Campaign Single',
// link: '/campaign-single/Support-for-Womans'
// },
// ]
// },
{
id: 5,
title: 'Blog',
link: '/blog',
submenu: [
{
id: 51,
title: 'Blog',
link: '/blog'
},
{
id: 52,
title: 'Blog Left sidebar',
link: '/blog-left'
},
{
id: 53,
title: 'Blog full width',
link: '/blog-fullwidth'
},
{
id: 54,
title: 'Blog single',
link: '/blog-single/support-progressive-change'
},
{
id: 55,
title: 'Blog single Left sidebar',
link: '/blog-single-left-sidebar/support-progressive-change'
},
{
id: 56,
title: 'Blog single Left sidebar',
link: '/blog-single-fullwidth/support-progressive-change'
},
]
},
// {
// id: 3,
// title: 'Pages',
// link: '/',
// submenu: [
// {
// id: 31,
// title: 'Gallery',
// link: '/gallery'
// },
// {
// id: 322,
// title: 'Testimonial',
// link: '/testimonial'
// },
// {
// id: 385,
// title: 'Team',
// link: '/team',
// },
// {
// id: 386,
// title: 'Team Single',
// link: '/team-single/Esther-Howard'
// },
// {
// id: 388,
// title: 'Services',
// link: '/service'
// },
// {
// id: 389,
// title: 'Services Single',
// link: '/service-single/Economic-Establishment'
// },
// {
// id: 371,
// title: 'Shop',
// link: '/shop',
// },
// {
// id: 375,
// title: 'Shop Single',
// link: '/product-single/The-Audacity-of-Hope'
// },
// {
// id: 376,
// title: 'Cart',
// link: '/cart'
// },
// {
// id: 377,
// title: 'Checkout',
// link: '/checkout'
// },
// {
// id: 33,
// title: 'FAQ',
// link: '/faq'
// },
// {
// id: 39,
// title: 'Volunteer',
// link: '/volunteer'
// },
// {
// id: 34,
// title: '404 Error',
// link: '/404'
// },
// {
// id: 35,
// title: 'Login',
// link: '/login'
// },
// {
// id: 36,
// title: 'Register',
// link: '/register'
// },
// ]
// },
{
id: 3,
title: 'Services',
link: '/services',
},
// {
// id: 5,
// title: 'Blog',
// link: '/blog',
// submenu: [
// {
// id: 51,
// title: 'Blog',
// link: '/blog'
// },
// {
// id: 52,
// title: 'Blog Left sidebar',
// link: '/blog-left'
// },
// {
// id: 53,
// title: 'Blog full width',
// link: '/blog-fullwidth'
// },
// {
// id: 54,
// title: 'Blog single',
// link: '/blog-single/support-progressive-change'
// },
// {
// id: 55,
// title: 'Blog single Left sidebar',
// link: '/blog-single-left-sidebar/support-progressive-change'
// },
// {
// id: 56,
// title: 'Blog single Left sidebar',
// link: '/blog-single-fullwidth/support-progressive-change'
// },
// ]
// },
{
id: 88,
title: 'Contact',

View File

@ -63,7 +63,7 @@ const About = (props) => {
<span>Expert Immigration Guidance</span>
<h2>We Turn Immigration Challenges Into Success Stories</h2>
</div>
<p>Every immigration case tells a unique story of hope, determination, and the pursuit of the American dream. At Janhanlaw, we understand that behind every petition, application, and legal document is a real person with real dreams.</p>
<p>Every immigration case tells a unique story of hope, determination, and the pursuit of the American dream. At Janhan law, we understand that behind every petition, application, and legal document is a real person with real dreams.</p>
<p>Our comprehensive approach combines decades of legal expertise with genuine care for our clients' futures. Whether you're seeking to reunite with family, advance your career, or find safety and protection in America, we provide the skilled advocacy and personal attention your case deserves.
</p>
<p>

View File

@ -17,7 +17,7 @@ const AboutSection = (props) => {
<h2>Building Your American Dream.</h2>
</div>
<p>
For more than 25 years, Janhanlaw has been more than just a law office - we've been a beacon of hope for thousands of families seeking to build their American dream. 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.
For more than 25 years, Janhan law has been more than just a law office - we've been a beacon of hope for thousands of families seeking to build their American dream. 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.
</p>
<p>
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.

View File

@ -18,7 +18,7 @@ const Donors = () => {
<div className="col-lg-6">
<div className="donors-btn">
{/* <Link onClick={ClickHandler} href="/donate">Free Consultation</Link> */}
<Link onClick={ClickHandler} href="/donate">Call us Today</Link>
<Link onClick={ClickHandler} href="/contact">Call us Today</Link>
</div>
</div>
</div>

View File

@ -5,30 +5,30 @@ import Link from 'next/link';
const TestimonialSection = (props) => {
return (
<section className={`wpo-about-section section-padding3 ${props.abClass}`}>
<section className={`wpo-about-section no-padding ${props.abClass}`}>
<div className="container">
<div className="wpo-about-wrap">
<div className="row align-items-center">
<div className="col-lg-6 col-md-12 col-12 order-1 order-lg-2">
<div className="col-lg-6 col-md-12 col-12 order-2 order-lg-2">
<div className="wpo-about-img">
<Image src={props.abimg} alt="About Image" />
</div>
</div>
{/* Text Column — Show first on mobile, second on desktop */}
<div className="col-lg-6 col-md-12 col-12 order-2 order-lg-1 mb-5">
<div className="col-lg-6 col-md-12 col-12 order-1 order-lg-1">
<div className="wpo-about-text">
<div className="wpo-section-title">
<span>Our Mission</span>
<h2>Transforming Immigration Through Advocacy</h2>
</div>
<p>
At Janhanlaw, 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 over 25 years, we have stood as a beacon of hope for individuals and families navigating the complex landscape of U.S. immigration law.
At Janhan 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 over 25 years, we have stood as a beacon of hope for individuals and families navigating the complex landscape of U.S. immigration law.
</p>
</div>
<div className="close-form mt-5">
<div className="close-form mt-5 mb-5">
<Link className="theme-btn" href="/about/our-mission"><span className="text">Know More</span>
</Link>
</div>

View File

@ -18,7 +18,7 @@ const TestimonialSection2 = (props) => {
<h2>Championing Equal Immigration Rights</h2>
</div>
<p>
At Janhanlaw, we recognize that the pursuit of justice in immigration law cannot be separated from the fight against racial discrimination and systemic bias. For over 25 years, we have witnessed how racial prejudice can influence immigration decisions, from consular officer interviews to immigration court proceedings, affecting families from specific countries and communities disproportionately.
At Janhan law, we recognize that the pursuit of justice in immigration law cannot be separated from the fight against racial discrimination and systemic bias. For over 25 years, we have witnessed how racial prejudice can influence immigration decisions, from consular officer interviews to immigration court proceedings, affecting families from specific countries and communities disproportionately.
</p>
</div>
<div className="close-form mt-5">

View File

@ -31,7 +31,7 @@ const Footer = (props) => {
<h3>Quick Links</h3>
</div>
<ul>
<li><Link href="/home">Home</Link></li>
<li><Link href="/">Home</Link></li>
<li><Link href="/about">About Us</Link></li>
<li><Link href="/service">Services</Link></li>
<li><Link href="/our-approach">Our Approach</Link></li>
@ -113,7 +113,17 @@ const Footer = (props) => {
<div className="row text-center align-items-center">
<div className="col col-lg-12 col-md-12 col-12">
<ul>
<li>Copyright {new Date().getFullYear()} © Janahan Law. Powered by <a href="https://metatroncubesolutions.com/">MetatronCube</a>. All Right Reserved.{new Date().getFullYear()}</li>
<li>
Copyright {new Date().getFullYear()} © Janahan Law. Powered by{' '}
<a
href="https://metatroncubesolutions.com/"
target="_blank"
rel="noopener noreferrer"
style={{ color: '#c12026' }}
>
MetatronCube
</a>. All Right Reserved.
</li>
</ul>
</div>
{/* <div className="col col-lg-6 col-md-12 col-12">

View File

@ -36,12 +36,12 @@ const Header = (props) => {
<ul className="nav navbar-nav mb-2 mb-lg-0">
<li className="menu-item-has-children">
<Link onClick={ClickHandler} href="/">Home</Link>
<ul className="sub-menu">
{/* <ul className="sub-menu">
<li><Link onClick={ClickHandler} href="/home">Main Home</Link></li>
<li><Link onClick={ClickHandler} href="/home2">Election Home</Link></li>
<li><Link onClick={ClickHandler} href="/home3">Male Candidate</Link></li>
<li><Link onClick={ClickHandler} href="/home4">Female Candidate</Link></li>
</ul>
</ul> */}
</li>
<li><Link onClick={ClickHandler} href="/about">About us</Link></li>
<li className="menu-item-has-children">

View File

@ -34,7 +34,7 @@ const OurMission = () => {
<h2 className="mt-4">Our Mission</h2>
<p>
At Janhanlaw, 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 over 25 years, we have stood as a beacon of hope for individuals and families navigating the complex landscape of U.S. immigration law.
At Janhan 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 over 25 years, we have stood as a beacon of hope for individuals and families navigating the complex landscape of U.S. immigration law.
</p>
<p>
We believe that every person deserves expert legal guidance delivered with dignity, respect, and cultural understanding. Our mission is to break down the barriers that separate families, limit professional opportunities, and prevent individuals from achieving their American dreams. Through innovative legal strategies, multilingual communication, and personalized attention, we transform immigration challenges into success stories. We are not just attorneys - we are advocates, guides, and partners in your journey toward building a secure future in America.

View File

@ -14,8 +14,8 @@ const PageTitle = (props) => {
<div className="col col-xs-12">
<div className="wpo-breadcumb-wrap">
<h2>{props.pageTitle}</h2>
<ol className="wpo-breadcumb">
<li><Link href="/home">Home</Link></li>
<ol className="wpo-breadcumb-wrap">
<li><Link href="/">Home</Link></li>
<li><span>{props.pagesub}</span></li>
</ol>
</div>

View File

@ -34,7 +34,7 @@ const RacialJustice = () => {
<h2 className="mt-4">Racial Justice</h2>
<p>
At Janhanlaw, we recognize that the pursuit of justice in immigration law cannot be separated from the fight against racial discrimination and systemic bias. For over 25 years, we have witnessed how racial prejudice can influence immigration decisions, from consular officer interviews to immigration court proceedings, affecting families from specific countries and communities disproportionately. Our commitment to racial justice means actively challenging discriminatory practices, advocating for fair treatment regardless of national origin, and ensuring that every client receives equal protection under the law. We understand that true immigration reform must address the racial disparities that have historically shaped U.S. immigration policy. Through strategic litigation, community advocacy, and cultural competency training, we work to dismantle barriers that prevent equitable access to immigration benefits. Our diverse legal team reflects our commitment to representation that understands and respects the communities we serve.
At Janhan law, we recognize that the pursuit of justice in immigration law cannot be separated from the fight against racial discrimination and systemic bias. For over 25 years, we have witnessed how racial prejudice can influence immigration decisions, from consular officer interviews to immigration court proceedings, affecting families from specific countries and communities disproportionately. Our commitment to racial justice means actively challenging discriminatory practices, advocating for fair treatment regardless of national origin, and ensuring that every client receives equal protection under the law. We understand that true immigration reform must address the racial disparities that have historically shaped U.S. immigration policy. Through strategic litigation, community advocacy, and cultural competency training, we work to dismantle barriers that prevent equitable access to immigration benefits. Our diverse legal team reflects our commitment to representation that understands and respects the communities we serve.
</p>
@ -67,7 +67,7 @@ const RacialJustice = () => {
</blockquote>
<p>
Racial justice in immigration requires acknowledging how systemic discrimination has historically shaped U.S. immigration policy. We actively challenge these inequities through strategic advocacy, community education, and partnerships with civil rights organizations. The fight for racial justice in immigration law requires collective action and unwavering commitment. At Janhanlaw, we are proud to stand with immigrant communities in challenging discrimination and advocating for systemic change. We invite you to partner with us in building an immigration system that truly embodies America's values of equality and opportunity for all. Contact our team today to discuss how we can support your immigration journey while advancing justice for everyone.
Racial justice in immigration requires acknowledging how systemic discrimination has historically shaped U.S. immigration policy. We actively challenge these inequities through strategic advocacy, community education, and partnerships with civil rights organizations. The fight for racial justice in immigration law requires collective action and unwavering commitment. At Janhan law, we are proud to stand with immigrant communities in challenging discrimination and advocating for systemic change. We invite you to partner with us in building an immigration system that truly embodies America's values of equality and opportunity for all. Contact our team today to discuss how we can support your immigration journey while advancing justice for everyone.
</p>
</div>
</div>

View File

@ -47,11 +47,11 @@ const BlogSingle = (props) => {
</div>
</div>
<div className="entry-meta">
<ul>
{/* <ul>
<li><i className="fi flaticon-calendar"></i> {BlogDetails?.create_at}</li>
<li><i className="fi ti-user"></i> By <Link href="/">{BlogDetails?.authorTitle}</Link> </li>
{/* <li><i className="fi ti-comment-alt"></i> Comments {BlogDetails?.comment}</li> */}
</ul>
<li><i className="fi ti-comment-alt"></i> Comments {BlogDetails?.comment}</li>
</ul> */}
</div>
<h2>{BlogDetails?.title}</h2>
<div

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

View File

@ -180,11 +180,11 @@
padding-bottom: 120px;
@media(max-width:991px) {
padding-top: 60px !important;
padding-top: 60px !important;
padding-bottom: 60px !important;
}
&.pt-padding{
&.pt-padding {
@media(max-width:991px) {
padding-top: 70px;
}
@ -815,7 +815,7 @@
&.slick-active {
button {
background: $theme-primary-color;
width: 45px;
width: 15px;
}
}
}
@ -1708,9 +1708,9 @@
.wpo-team-text {
padding-top: 15px;
@media(max-width:375px) {
padding-top: 90px;
}
@media(max-width:375px) {
padding-top: 90px;
}
span {
font-style: normal;
@ -2107,4 +2107,10 @@
display: none;
}
}
}
@media (max-width: 768px) {
.no-padding {
padding: 0 !important;
}
}

View File

@ -164,8 +164,8 @@ export const MissionVision = [
{
Id: '1',
sImgS: sImgS1,
sTitle: 'Legal Establishment',
slug: 'legal-establishment',
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 professionals area of expertise such as competitive analysis, corporate strategy the activities',
@ -190,7 +190,7 @@ export const MissionVision = [
sImgS: sImgS3,
sTitle: 'Recognized Legal Excellence',
slug: 'recognized-legal-excellence',
description: 'Our attorneys are recognized leaders in immigration law, with numerous awards and peer recognition for outstanding service.',
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 professionals area of expertise such as competitive analysis, corporate strategy the activities',
icon: 'flaticon-team-work',
@ -212,8 +212,8 @@ export const MissionVision = [
{
Id: '1',
sImgS: sImgS1,
sTitle: 'Legal Establishment',
slug: 'legal-establishment',
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 professionals area of expertise such as competitive analysis, corporate strategy the activities',
@ -238,7 +238,7 @@ export const MissionVision = [
sImgS: sImgS3,
sTitle: 'Recognized Legal Excellence',
slug: 'recognized-legal-excellence',
description: 'Our attorneys are recognized leaders in immigration law, with numerous awards and peer recognition for outstanding service.',
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 professionals area of expertise such as competitive analysis, corporate strategy the activities',
icon: 'flaticon-team-work',