mirror of
https://github.com/neosubhamoy/neosubhamoy-portfolio.git
synced 2025-12-19 20:33:06 +05:30
(feat): added privacy policy page
This commit is contained in:
@@ -959,6 +959,10 @@ video {
|
|||||||
margin-top: 7rem;
|
margin-top: 7rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.mb-28 {
|
||||||
|
margin-bottom: 7rem;
|
||||||
|
}
|
||||||
|
|
||||||
.block {
|
.block {
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
@@ -1335,6 +1339,10 @@ video {
|
|||||||
border-top-width: 5px;
|
border-top-width: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.border-b-\[1px\] {
|
||||||
|
border-bottom-width: 1px;
|
||||||
|
}
|
||||||
|
|
||||||
.border-\[rgb\(22\2c _163\2c _74\)\] {
|
.border-\[rgb\(22\2c _163\2c _74\)\] {
|
||||||
--tw-border-opacity: 1;
|
--tw-border-opacity: 1;
|
||||||
border-color: rgb(22 163 74 / var(--tw-border-opacity));
|
border-color: rgb(22 163 74 / var(--tw-border-opacity));
|
||||||
@@ -1392,6 +1400,10 @@ video {
|
|||||||
border-top-color: rgb(56 189 248 / var(--tw-border-opacity));
|
border-top-color: rgb(56 189 248 / var(--tw-border-opacity));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.border-b-accent_secondary_transparent {
|
||||||
|
border-bottom-color: rgba(255, 255, 255, 0.30);
|
||||||
|
}
|
||||||
|
|
||||||
.bg-\[rgba\(0\2c _0\2c _0\2c _0\.4\)\] {
|
.bg-\[rgba\(0\2c _0\2c _0\2c _0\.4\)\] {
|
||||||
background-color: rgba(0, 0, 0, 0.4);
|
background-color: rgba(0, 0, 0, 0.4);
|
||||||
}
|
}
|
||||||
@@ -1432,6 +1444,23 @@ video {
|
|||||||
background-color: rgb(30 41 59 / var(--tw-bg-opacity));
|
background-color: rgb(30 41 59 / var(--tw-bg-opacity));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.bg-bg_third {
|
||||||
|
--tw-bg-opacity: 1;
|
||||||
|
background-color: rgb(38 51 74 / var(--tw-bg-opacity));
|
||||||
|
}
|
||||||
|
|
||||||
|
.bg-accent_primary_transparent {
|
||||||
|
background-color: rgba(56, 189, 248, 0.30);
|
||||||
|
}
|
||||||
|
|
||||||
|
.bg-accent_secondary_transparent {
|
||||||
|
background-color: rgba(255, 255, 255, 0.30);
|
||||||
|
}
|
||||||
|
|
||||||
|
.bg-accent_primary_extratransparent {
|
||||||
|
background-color: rgba(56, 189, 248, 0.15);
|
||||||
|
}
|
||||||
|
|
||||||
.bg-gradient-to-r {
|
.bg-gradient-to-r {
|
||||||
background-image: linear-gradient(to right, var(--tw-gradient-stops));
|
background-image: linear-gradient(to right, var(--tw-gradient-stops));
|
||||||
}
|
}
|
||||||
@@ -1565,10 +1594,23 @@ video {
|
|||||||
padding-bottom: 0.30rem;
|
padding-bottom: 0.30rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.py-7 {
|
||||||
|
padding-top: 1.75rem;
|
||||||
|
padding-bottom: 1.75rem;
|
||||||
|
}
|
||||||
|
|
||||||
.pb-1 {
|
.pb-1 {
|
||||||
padding-bottom: 0.25rem;
|
padding-bottom: 0.25rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.pb-5 {
|
||||||
|
padding-bottom: 1.25rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pt-7 {
|
||||||
|
padding-top: 1.75rem;
|
||||||
|
}
|
||||||
|
|
||||||
.text-center {
|
.text-center {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
@@ -1630,6 +1672,11 @@ video {
|
|||||||
line-height: 1;
|
line-height: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.text-6xl {
|
||||||
|
font-size: 3.75rem;
|
||||||
|
line-height: 1;
|
||||||
|
}
|
||||||
|
|
||||||
.font-\[300\] {
|
.font-\[300\] {
|
||||||
font-weight: 300;
|
font-weight: 300;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -9,6 +9,7 @@ $serverRoutes = [
|
|||||||
'/projects' => 'projects.php',
|
'/projects' => 'projects.php',
|
||||||
'/blog' => 'blog.php',
|
'/blog' => 'blog.php',
|
||||||
'/contact' => 'contact.php',
|
'/contact' => 'contact.php',
|
||||||
|
'/privacy-policy' => 'policy.php',
|
||||||
];
|
];
|
||||||
|
|
||||||
$devRoutes = [
|
$devRoutes = [
|
||||||
@@ -16,6 +17,7 @@ $devRoutes = [
|
|||||||
'/neosubhamoy/htdocs/projects' => 'projects.php',
|
'/neosubhamoy/htdocs/projects' => 'projects.php',
|
||||||
'/neosubhamoy/htdocs/blog' => 'blog.php',
|
'/neosubhamoy/htdocs/blog' => 'blog.php',
|
||||||
'/neosubhamoy/htdocs/contact' => 'contact.php',
|
'/neosubhamoy/htdocs/contact' => 'contact.php',
|
||||||
|
'/neosubhamoy/htdocs/privacy-policy' => 'policy.php',
|
||||||
];
|
];
|
||||||
|
|
||||||
if ($host == "localhost" || $host == "192.168.29.177") {
|
if ($host == "localhost" || $host == "192.168.29.177") {
|
||||||
|
|||||||
0
htdocs/dmca.php
Normal file
0
htdocs/dmca.php
Normal file
278
htdocs/policy.php
Normal file
278
htdocs/policy.php
Normal file
@@ -0,0 +1,278 @@
|
|||||||
|
<?php
|
||||||
|
require 'core/vendor/autoload.php';
|
||||||
|
$dotenv = Dotenv\Dotenv::createImmutable('../');
|
||||||
|
$dotenv->load();
|
||||||
|
|
||||||
|
require 'core/connection.php';
|
||||||
|
require 'core/host_config.php';
|
||||||
|
require 'core/query_functions.php';
|
||||||
|
?>
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<title>Privacy Policy - @neo_subhamoy</title>
|
||||||
|
<?php require 'assets/_integrate.php';?>
|
||||||
|
</head>
|
||||||
|
<body class="font-lexend bg-bg_primary text-accent_secondary">
|
||||||
|
<?php include 'assets/_preloader.php';?>
|
||||||
|
<?php include 'assets/_floatingbar.php';?>
|
||||||
|
<?php require 'assets/_header.php';?>
|
||||||
|
<div class="policybox w-full px-4 lg:px-[4.5rem]">
|
||||||
|
<div class="mainsection w-full mt-10 mb-28">
|
||||||
|
<div class="policyheader w-full flex justify-between items-center">
|
||||||
|
<span class="flex items-center">
|
||||||
|
<button class="w-[40px] h-[40px] bg-bg_secondary hover:bg-bg_third rounded-full flex justify-center items-center mr-3" onclick="location.href='<?php echo $basePath ?>'"><i class="fa-solid fa-chevron-left"></i></button>
|
||||||
|
<h1 class="text-4xl">Privacy Policy</h1>
|
||||||
|
</span>
|
||||||
|
<span class="px-4 py-1 bg-accent_primary_extratransparent rounded-full text-accent_primary">#legal</span>
|
||||||
|
</div>
|
||||||
|
<p class="text-lg text-accent_three mt-12">Last Updated On: 11th of December 2023</p>
|
||||||
|
<div class="policycontent w-full bg-bg_secondary rounded-xl px-5 py-7 mt-7">
|
||||||
|
<div class="policycont1 pb-5 mb-10 border-b-[1px] border-b-accent_secondary_transparent">
|
||||||
|
<p>
|
||||||
|
At Subhamoy Biswas Portfolio, accessible from https://neosubhamoy.com,
|
||||||
|
one of our main priorities is the privacy of our visitors. This Privacy
|
||||||
|
Policy document contains types of information that is collected and
|
||||||
|
recorded by Subhamoy Biswas Portfolio and how we use it.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
If you have additional questions or require more information about our
|
||||||
|
Privacy Policy, do not hesitate to contact us.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<div class="policycont2">
|
||||||
|
<h2 class="text-2xl mb-2">Consent</h2>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
By using our website, you hereby consent to our Privacy Policy and agree
|
||||||
|
to its terms.
|
||||||
|
</p>
|
||||||
|
<br>
|
||||||
|
<h2 class="text-2xl mb-2">Information we collect</h2>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
The personal information that you are asked to provide, and the reasons
|
||||||
|
why you are asked to provide it, will be made clear to you at the point
|
||||||
|
we ask you to provide your personal information.
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
If you contact us directly, we may receive additional information about
|
||||||
|
you such as your name, email address, phone number, the contents of the
|
||||||
|
message and/or attachments you may send us, and any other information
|
||||||
|
you may choose to provide.
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
When you register for an Account, we may ask for your contact
|
||||||
|
information, including items such as name, company name, address, email
|
||||||
|
address, and telephone number.
|
||||||
|
</p>
|
||||||
|
<br>
|
||||||
|
<h2 class="text-2xl mb-2">How we use your information</h2>
|
||||||
|
|
||||||
|
<p>We use the information we collect in various ways, including to:</p>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<li>Provide, operate, and maintain our website</li>
|
||||||
|
<li>Improve, personalize, and expand our website</li>
|
||||||
|
<li>Understand and analyze how you use our website</li>
|
||||||
|
<li>Develop new products, services, features, and functionality</li>
|
||||||
|
<li>
|
||||||
|
Communicate with you, either directly or through one of our partners,
|
||||||
|
including for customer service, to provide you with updates and other
|
||||||
|
information relating to the website, and for marketing and promotional
|
||||||
|
purposes
|
||||||
|
</li>
|
||||||
|
<li>Send you emails</li>
|
||||||
|
<li>Find and prevent fraud</li>
|
||||||
|
</ul>
|
||||||
|
<br>
|
||||||
|
<h2 class="text-2xl mb-2">Log Files</h2>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Subhamoy Biswas Portfolio follows a standard procedure of using log
|
||||||
|
files. These files log visitors when they visit websites. All hosting
|
||||||
|
companies do this and a part of hosting services' analytics. The
|
||||||
|
information collected by log files include internet protocol (IP)
|
||||||
|
addresses, browser type, Internet Service Provider (ISP), date and time
|
||||||
|
stamp, referring/exit pages, and possibly the number of clicks. These
|
||||||
|
are not linked to any information that is personally identifiable. The
|
||||||
|
purpose of the information is for analyzing trends, administering the
|
||||||
|
site, tracking users' movement on the website, and gathering demographic
|
||||||
|
information.
|
||||||
|
</p>
|
||||||
|
<br>
|
||||||
|
<h2 class="text-2xl mb-2">Cookies and Web Beacons</h2>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Like any other website, Subhamoy Biswas Portfolio uses 'cookies'. These
|
||||||
|
cookies are used to store information including visitors' preferences,
|
||||||
|
and the pages on the website that the visitor accessed or visited. The
|
||||||
|
information is used to optimize the users' experience by customizing our
|
||||||
|
web page content based on visitors' browser type and/or other
|
||||||
|
information.
|
||||||
|
</p>
|
||||||
|
<br>
|
||||||
|
<h2 class="text-2xl mb-2">Google DoubleClick DART Cookie</h2>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Google is one of a third-party vendor on our site. It also uses cookies,
|
||||||
|
known as DART cookies, to serve ads to our site visitors based upon
|
||||||
|
their visit to www.website.com and other sites on the internet. However,
|
||||||
|
visitors may choose to decline the use of DART cookies by visiting the
|
||||||
|
Google ad and content network Privacy Policy at the following URL –
|
||||||
|
<a target="_blank" href="https://policies.google.com/technologies/ads"
|
||||||
|
>https://policies.google.com/technologies/ads</a
|
||||||
|
>
|
||||||
|
</p>
|
||||||
|
<br>
|
||||||
|
<h2 class="text-2xl mb-2">Our Advertising Partners</h2>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Some of advertisers on our site may use cookies and web beacons. Our
|
||||||
|
advertising partners are listed below. Each of our advertising partners
|
||||||
|
has their own Privacy Policy for their policies on user data. For easier
|
||||||
|
access, we hyperlinked to their Privacy Policies below.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<p>Google</p>
|
||||||
|
<p>
|
||||||
|
<a target="_blank" href="https://policies.google.com/technologies/ads"
|
||||||
|
>https://policies.google.com/technologies/ads</a
|
||||||
|
>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<br>
|
||||||
|
<h2 class="text-2xl mb-2">Advertising Partners Privacy Policies</h2>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
You may consult this list to find the Privacy Policy for each of the
|
||||||
|
advertising partners of Subhamoy Biswas Portfolio.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Third-party ad servers or ad networks uses technologies like cookies,
|
||||||
|
JavaScript, or Web Beacons that are used in their respective
|
||||||
|
advertisements and links that appear on Subhamoy Biswas Portfolio, which
|
||||||
|
are sent directly to users' browser. They automatically receive your IP
|
||||||
|
address when this occurs. These technologies are used to measure the
|
||||||
|
effectiveness of their advertising campaigns and/or to personalize the
|
||||||
|
advertising content that you see on websites that you visit.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Note that Subhamoy Biswas Portfolio has no access to or control over
|
||||||
|
these cookies that are used by third-party advertisers.
|
||||||
|
</p>
|
||||||
|
<br>
|
||||||
|
<h2 class="text-2xl mb-2">Third Party Privacy Policies</h2>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Subhamoy Biswas Portfolio's Privacy Policy does not apply to other
|
||||||
|
advertisers or websites. Thus, we are advising you to consult the
|
||||||
|
respective Privacy Policies of these third-party ad servers for more
|
||||||
|
detailed information. It may include their practices and instructions
|
||||||
|
about how to opt-out of certain options.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
You can choose to disable cookies through your individual browser
|
||||||
|
options. To know more detailed information about cookie management with
|
||||||
|
specific web browsers, it can be found at the browsers' respective
|
||||||
|
websites.
|
||||||
|
</p>
|
||||||
|
<br>
|
||||||
|
<h2 class="text-2xl mb-2">CCPA Privacy Rights (Do Not Sell My Personal Information)</h2>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Under the CCPA, among other rights, California consumers have the right
|
||||||
|
to:
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
Request that a business that collects a consumer's personal data
|
||||||
|
disclose the categories and specific pieces of personal data that a
|
||||||
|
business has collected about consumers.
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
Request that a business delete any personal data about the consumer that
|
||||||
|
a business has collected.
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
Request that a business that sells a consumer's personal data, not sell
|
||||||
|
the consumer's personal data.
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
If you make a request, we have one month to respond to you. If you would
|
||||||
|
like to exercise any of these rights, please contact us.
|
||||||
|
</p>
|
||||||
|
<br>
|
||||||
|
<h2 class="text-2xl mb-2">GDPR Data Protection Rights</h2>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
We would like to make sure you are fully aware of all of your data
|
||||||
|
protection rights. Every user is entitled to the following:
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
The right to access – You have the right to request copies of your
|
||||||
|
personal data. We may charge you a small fee for this service.
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
The right to rectification – You have the right to request that we
|
||||||
|
correct any information you believe is inaccurate. You also have the
|
||||||
|
right to request that we complete the information you believe is
|
||||||
|
incomplete.
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
The right to erasure – You have the right to request that we erase your
|
||||||
|
personal data, under certain conditions.
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
The right to restrict processing – You have the right to request that we
|
||||||
|
restrict the processing of your personal data, under certain conditions.
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
The right to object to processing – You have the right to object to our
|
||||||
|
processing of your personal data, under certain conditions.
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
The right to data portability – You have the right to request that we
|
||||||
|
transfer the data that we have collected to another organization, or
|
||||||
|
directly to you, under certain conditions.
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
If you make a request, we have one month to respond to you. If you would
|
||||||
|
like to exercise any of these rights, please contact us.
|
||||||
|
</p>
|
||||||
|
<br>
|
||||||
|
<h2 class="text-2xl mb-2">Children's Information</h2>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Another part of our priority is adding protection for children while
|
||||||
|
using the internet. We encourage parents and guardians to observe,
|
||||||
|
participate in, and/or monitor and guide their online activity.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Subhamoy Biswas Portfolio does not knowingly collect any Personal
|
||||||
|
Identifiable Information from children under the age of 13. If you think
|
||||||
|
that your child provided this kind of information on our website, we
|
||||||
|
strongly encourage you to contact us immediately and we will do our best
|
||||||
|
efforts to promptly remove such information from our records.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<?php require 'assets/_footer.php';?>
|
||||||
|
<script type="text/javascript" src="assets/js/preloader-config.js"></script>
|
||||||
|
<script type="text/javascript" src="assets/js/floatingbar-config.js"></script>
|
||||||
|
<script type="text/javascript" src="assets/js/keybinding-config.js"></script>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
0
htdocs/terms.php
Normal file
0
htdocs/terms.php
Normal file
Reference in New Issue
Block a user