BlogDetails.js
7.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
import React from "react";
import Link from "next/link";
import Image from "next/image";
import BlogSidebar from "./BlogSidebar";
import PageBanner from "@/components/reuseables/PageBanner";
const banners = [
{
imageSrc: "/images/banner/knowledge.webp",
pageTitle: "Blogs Details",
homePageUrl: "/",
homePageText: "Home",
activePageText: "Blogs Details",
},
];
const posts = [
{
image: "/images/blog/blogs1.jpeg",
altText: "Blog Image",
date: "Jan 22, 2024",
author: "By Advith Consulting",
title: "Tax Deducted at Source under Income Tax Act",
shortDesc:
"The concept of Tax Deducted at Source (TDS) or Withholding taxes as it is internationally called, was introduced as a part of Income tax Act, 1961 (the Act) with the purpose to collect tax from the very source of income. It requires that the person or organization on whom the responsibility has been cast called as Deductor, to deduct tax at the appropriate rates from payments of specific nature which are being made to the specific recipient called Deductee.",
quote:
"It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.",
},
];
const BlogDetails = () => {
return (
<>
<PageBanner banners={banners} />
<div className="blog-details-area ptb-100">
<div className="container">
<div className="row">
<div className="col-lg-12 col-md-12">
<div className="blog-details-desc">
<div className="article-image">
<Image
src={posts[0].image}
layout="fill"
alt="image"
className="image-fluid image"
/>
</div>
<div className="article-content">
<div className="entry-meta">
<ul>
<li>
<i className="ri-shield-user-line"></i>
<p> {posts[0].author}</p>
</li>
<li>
<i className="ri-calendar-2-line"></i>
<p>{posts[0].date}</p>
</li>
</ul>
</div>
<h3>1. Introduction</h3>
<p>{posts[0].shortDesc}</p>
<p>
TDS is based on a concept called pay as you earn, where the
deductor deducts an equitable amount of tax periodically on
the earnings or income of the tax payer and remits into the
account of the Central Government which practically assist
the taxpayer from the burden of making a lumpsum payment at
the end of the financial year. The deductee from whose
income, tax has been deducted at source would be entitled to
get credit of the said amount on the basis of TDS
certificate issued by the deductor.
</p>
<p>
Lorem ipsum dolor sit amet, consectetur
<strong>adipisicing</strong> elit, sed do eiusmod tempor
incididunt ut labore et dolore magna aliqua. Ut enim ad
minim veniam, quis nostrud exercitation ullamco laboris nisi
ut aliquip ex ea <a href="#">commodo</a> consequat. Duis
aute irure dolor in reprehenderit in sed quia non numquam
eius modi tempora incidunt ut labore et dolore magnam
aliquam quaerat voluptatem.
</p>
<blockquote className="wp-block-quote">
<p>{posts[0].quote}</p>
<cite>Tom Cruise</cite>
</blockquote>
<p>
Quuntur magni dolores eos qui ratione voluptatem sequi
nesciunt. Neque porro quia non numquam eius modi tempora
incidunt ut labore et dolore magnam dolor sit amet,
consectetur adipisicing.
</p>
<ul className="wp-block-gallery columns-3">
<li className="blocks-gallery-item">
<figure>
<Image
className="img-fuild image"
src="/images/blog/blog2.jpg"
alt="image"
layout="fill"
/>
</figure>
</li>
<li className="blocks-gallery-item">
<figure>
<Image
className="img-fuild image"
src="/images/blog/blog3.jpg"
alt="image"
layout="fill"
/>
</figure>
</li>
<li className="blocks-gallery-item">
<figure>
<Image
className="img-fuild image"
src="/images/blog/blog4.jpg"
alt="image"
layout="fill"
/>
</figure>
</li>
</ul>
<h3>Four major elements that we offer:</h3>
<ul className="features-list">
<li>Scientific skills for getting a better result</li>
<li>Communication skills to getting in touch</li>
<li>A career overview opportunity available</li>
<li>A good work environment for work</li>
</ul>
<h3>Setting the mood with incense</h3>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit,
sed do eiusmod tempor incididunt ut labore et dolore magna
aliqua. Ut enim ad minim veniam, quis nostrud exercitation
ullamco laboris nisi ut aliquip ex ea commodo consequat.
Duis aute irure dolor in reprehenderit in sed quia non
numquam eius modi tempora incidunt ut labore et dolore
magnam aliquam quaerat voluptatem.
</p>
<h3>The rise of marketing and why you need it</h3>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit,
sed do eiusmod tempor incididunt ut labore et dolore magna
aliqua. Ut enim ad minim veniam, quis nostrud.
</p>
</div>
<div className="article-footer">
<div className="article-tags">
<Link href="/blog">Consulting</Link>
<Link href="/blog">Business</Link>
<Link href="/blog">Market</Link>
</div>
</div>
</div>
</div>
{/* <div className="col-lg-4 col-md-12">
<BlogSidebar />
</div> */}
</div>
</div>
</div>
</>
);
};
export default BlogDetails;