[Add] Create About, Contact Us, Privacy Policy, and Terms & Conditions pages
This commit is contained in:
@@ -63,9 +63,11 @@
|
||||
<footer class="site-footer">
|
||||
{% if site.github.is_project_page %}
|
||||
<!-- <span class="site-footer-owner"><a href="{{ site.github.repository_url }}">{{ site.github.repository_name }}</a> is maintained by <a href="{{ site.github.owner_url }}">{{ site.github.owner_name }}</a>.</span> -->
|
||||
<span class="site-footer-owner">Made with ❤️ by <a href="{{ site.github.owner_url }}" target="_blank">Nirav Kanani</a></span>
|
||||
<span class="site-footer-owner">Made with ❤️ by <a href="{{ site.github.owner_url }}" target="_blank">Nirav Kanani</a> |
|
||||
<a href="/privacy-policy/">Privacy Policy</a> |
|
||||
<a href="/terms-and-conditions/">Terms & Conditions</a> |
|
||||
<a href="/contact-us/">Contact Us</a></span>
|
||||
{% endif %}
|
||||
<!-- <span class="site-footer-credits">This page was generated by <a href="https://pages.github.com">GitHub Pages</a>.</span> -->
|
||||
</footer>
|
||||
<script type="text/javascript">
|
||||
window.addEventListener('load', function () {
|
||||
|
||||
20
about.md
Normal file
20
about.md
Normal file
@@ -0,0 +1,20 @@
|
||||
---
|
||||
layout: default
|
||||
permalink: /about/
|
||||
---
|
||||
|
||||
# About Us
|
||||
|
||||
Welcome to **{{ site.title }}** 👋
|
||||
|
||||
We are passionate about providing **developer resources, certification revision short notes, cheat sheets, blogs, and useful guides** to help learners, engineers, and tech professionals grow in their careers.
|
||||
|
||||
## Our Mission
|
||||
|
||||
- 📘 Deliver clear, concise, and practical knowledge
|
||||
- 🚀 Support developers with quick reference guides and real-world solutions
|
||||
- 🌍 Build a community of continuous learners
|
||||
|
||||
Whether you’re preparing for a certification, brushing up on concepts, or exploring new technologies, **{{ site.title }}** is here to make learning easier and faster.
|
||||
|
||||
If you have suggestions, questions, or collaboration ideas, feel free to reach out via our **[Contact page](/contact/)**.
|
||||
161
contact-us.html
Normal file
161
contact-us.html
Normal file
@@ -0,0 +1,161 @@
|
||||
---
|
||||
layout: default
|
||||
title: Contact Us
|
||||
permalink: /contact-us/
|
||||
---
|
||||
|
||||
<h5>For all questions and suggestions Contact Us using below form. Form submission may take time, so please be patient 😄⏳</h5>
|
||||
<div class="formbold-main-wrapper">
|
||||
<div class="formbold-form-wrapper">
|
||||
<form name="submit-to-google-sheet">
|
||||
<div class="formbold-mb-5">
|
||||
<label for="name"> Full Name </label>
|
||||
<input
|
||||
type="text"
|
||||
name="Name"
|
||||
id="name"
|
||||
placeholder="Full Name"
|
||||
class="formbold-form-input"
|
||||
required=true
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div class="formbold-mb-5">
|
||||
<label for="email"> Email Address </label>
|
||||
<input
|
||||
type="email"
|
||||
name="Email"
|
||||
id="email"
|
||||
placeholder="Enter your email"
|
||||
class="formbold-form-input"
|
||||
required=true
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div class="formbold-mb-5">
|
||||
<label for="subject"> Subject </label>
|
||||
<input
|
||||
type="text"
|
||||
name="Subject"
|
||||
id="subject"
|
||||
placeholder="Enter your subject"
|
||||
class="formbold-form-input"
|
||||
required=true
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div class="formbold-mb-5">
|
||||
<label for="message"> Message </label>
|
||||
<textarea
|
||||
rows="6"
|
||||
name="Message"
|
||||
id="message"
|
||||
placeholder="Type your message"
|
||||
class="formbold-form-input"
|
||||
required=true
|
||||
></textarea>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<input type="hidden" id="site" name="Site" value="https://kananinirav.com">
|
||||
<button class="formbold-btn">Submit</button>
|
||||
</div>
|
||||
</form>
|
||||
<span id="msg"></span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
const scriptURL = 'https://script.google.com/macros/s/AKfycbxQFTlTZ3w-uvQPhq4-_Thbtl6JHYlt0J4BwfIZ1LeWT9bkcAMt0kMNT51soz5UWuHS/exec'
|
||||
const form = document.forms['submit-to-google-sheet']
|
||||
const msg = document.getElementById("msg")
|
||||
|
||||
form.addEventListener('submit', e => {
|
||||
e.preventDefault()
|
||||
fetch(scriptURL, { method: 'POST', body: new FormData(form)})
|
||||
.then(response => {
|
||||
msg.innerHTML = "Thank you for contacting us! We have received your message and will respond as soon as possible. In the meantime, feel free to explore our website. Have a great day!"
|
||||
setTimeout(() => {
|
||||
msg.innerHTML = ""
|
||||
}, 15000);
|
||||
form.reset();
|
||||
})
|
||||
.catch(error => console.error('Error!', error.message))
|
||||
})
|
||||
</script>
|
||||
<style>
|
||||
.formbold-mb-5 {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.formbold-pt-3 {
|
||||
padding-top: 12px;
|
||||
}
|
||||
.formbold-main-wrapper {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 1rem;
|
||||
}
|
||||
.formbold-form-wrapper {
|
||||
margin: 0 auto;
|
||||
/* max-width: 550px; */
|
||||
width: 100%;
|
||||
background: white;
|
||||
}
|
||||
|
||||
.formbold-form-input {
|
||||
width: 100%;
|
||||
padding: 12px 24px;
|
||||
border-radius: 6px;
|
||||
border: 1px solid #e0e0e0;
|
||||
background: white;
|
||||
font-weight: 500;
|
||||
font-size: 16px;
|
||||
color: #6b7280;
|
||||
outline: none;
|
||||
resize: none;
|
||||
}
|
||||
.formbold-form-input:focus {
|
||||
border-color: #159957;
|
||||
box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
|
||||
}
|
||||
|
||||
.formbold-btn {
|
||||
text-align: center;
|
||||
color: white;
|
||||
font-size: 16px;
|
||||
border-radius: 6px;
|
||||
padding: 14px 32px;
|
||||
border: none;
|
||||
font-weight: 600;
|
||||
background-color: #159957;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.formbold--mx-3 {
|
||||
margin-left: -12px;
|
||||
margin-right: -12px;
|
||||
}
|
||||
.formbold-px-3 {
|
||||
padding-left: 12px;
|
||||
padding-right: 12px;
|
||||
}
|
||||
.flex {
|
||||
display: flex;
|
||||
}
|
||||
.flex-wrap {
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
.w-full {
|
||||
width: 100%;
|
||||
}
|
||||
@media (min-width: 540px) {
|
||||
.sm\:w-half {
|
||||
width: 50%;
|
||||
}
|
||||
}
|
||||
#msg{
|
||||
margin-top: 10px;
|
||||
display: block;
|
||||
}
|
||||
</style>
|
||||
45
privacy-policy.md
Normal file
45
privacy-policy.md
Normal file
@@ -0,0 +1,45 @@
|
||||
---
|
||||
layout: default
|
||||
permalink: /privacy-policy/
|
||||
---
|
||||
|
||||
# Privacy Policy
|
||||
|
||||
**Last Updated:** January 1, 2025
|
||||
|
||||
Your privacy is important to us at **{{ site.title }}**. This Privacy Policy explains how we collect, use, and protect your information.
|
||||
|
||||
## 1. Information We Collect
|
||||
|
||||
- **Personal Information**: Only when you voluntarily provide it (e.g., contact form, email).
|
||||
- **Non-Personal Information**: Browser type, device information, pages visited, and traffic data.
|
||||
|
||||
## 2. Use of Information
|
||||
|
||||
We may use collected data to:
|
||||
|
||||
- Improve website content and user experience
|
||||
- Respond to inquiries or feedback
|
||||
- Display personalized ads through **Google AdSense**
|
||||
|
||||
## 3. Google AdSense & Cookies
|
||||
|
||||
- Third-party vendors, including Google, use cookies to serve ads based on your previous visits.
|
||||
- Google’s use of advertising cookies enables it and its partners to serve ads based on your browsing activity.
|
||||
- You can opt out of personalized advertising by visiting [Google Ads Settings](https://www.google.com/settings/ads/).
|
||||
|
||||
## 4. Third-Party Links
|
||||
|
||||
Our website may include external links. We are not responsible for the privacy practices or content of third-party sites.
|
||||
|
||||
## 5. Data Protection
|
||||
|
||||
We take reasonable security measures to protect your data. However, no online system is 100% secure, so we cannot guarantee complete protection.
|
||||
|
||||
## 6. Updates to This Policy
|
||||
|
||||
We may update this Privacy Policy as needed. Any changes will be posted on this page with an updated revision date.
|
||||
|
||||
## 7. Contact Us
|
||||
|
||||
If you have questions about this Privacy Policy, please contact us via our **[Contact page](/contact-us/)**.
|
||||
575
sitemap.xml
575
sitemap.xml
@@ -1,282 +1,299 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<urlset
|
||||
xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9
|
||||
http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">
|
||||
<url>
|
||||
<loc>https://kananinirav.com/</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>1.00</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/sections/cloud_computing.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/sections/iam.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/sections/ec2.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/sections/ec2_storage.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/sections/elb_asg.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/sections/s3.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/sections/databases.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/sections/other_compute.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/sections/deploying.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/sections/global_infrastructure.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/sections/cloud_integration.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/sections/cloud_monitoring.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/sections/vpc.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/sections/security_compliance.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/sections/machine_learning.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/sections/account_management_billing_support.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/sections/advanced_identity.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/sections/other_aws_services.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/sections/architecting_and_ecosystem.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/study-guide.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/practice-exam/exams.html</loc>
|
||||
<lastmod>2023-10-09T09:00:00+00:00</lastmod>
|
||||
<priority>1.00</priority>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/practice-exam/practice-exam-1.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/practice-exam/practice-exam-2.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/practice-exam/practice-exam-3.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/practice-exam/practice-exam-4.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/practice-exam/practice-exam-5.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/practice-exam/practice-exam-6.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/practice-exam/practice-exam-7.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/practice-exam/practice-exam-8.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/practice-exam/practice-exam-9.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/practice-exam/practice-exam-10.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/practice-exam/practice-exam-11.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/practice-exam/practice-exam-12.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/practice-exam/practice-exam-13.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/practice-exam/practice-exam-14.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/practice-exam/practice-exam-15.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/practice-exam/practice-exam-16.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/practice-exam/practice-exam-17.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/practice-exam/practice-exam-18.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/practice-exam/practice-exam-19.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/practice-exam/practice-exam-20.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/practice-exam/practice-exam-21.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/practice-exam/practice-exam-22.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/practice-exam/practice-exam-23.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/mind-map-aws-ccp.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">
|
||||
<url>
|
||||
<loc>https://kananinirav.com/</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>1.00</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/sections/cloud_computing.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/sections/iam.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/sections/ec2.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/sections/ec2_storage.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/sections/elb_asg.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/sections/s3.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/sections/databases.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/sections/other_compute.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/sections/deploying.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/sections/global_infrastructure.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/sections/cloud_integration.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/sections/cloud_monitoring.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/sections/vpc.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/sections/security_compliance.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/sections/machine_learning.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/sections/account_management_billing_support.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/sections/advanced_identity.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/sections/other_aws_services.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/sections/architecting_and_ecosystem.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/study-guide.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/practice-exam/exams.html</loc>
|
||||
<lastmod>2023-10-09T09:00:00+00:00</lastmod>
|
||||
<priority>1.00</priority>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/practice-exam/practice-exam-1.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/practice-exam/practice-exam-2.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/practice-exam/practice-exam-3.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/practice-exam/practice-exam-4.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/practice-exam/practice-exam-5.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/practice-exam/practice-exam-6.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/practice-exam/practice-exam-7.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/practice-exam/practice-exam-8.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/practice-exam/practice-exam-9.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/practice-exam/practice-exam-10.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/practice-exam/practice-exam-11.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/practice-exam/practice-exam-12.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/practice-exam/practice-exam-13.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/practice-exam/practice-exam-14.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/practice-exam/practice-exam-15.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/practice-exam/practice-exam-16.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/practice-exam/practice-exam-17.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/practice-exam/practice-exam-18.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/practice-exam/practice-exam-19.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/practice-exam/practice-exam-20.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/practice-exam/practice-exam-21.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/practice-exam/practice-exam-22.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/practice-exam/practice-exam-23.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/mind-map-aws-ccp.html</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/contact-us/</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/privacy-policy/</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://kananinirav.com/terms-and-conditions/</loc>
|
||||
<lastmod>2023-12-01T09:00:00+00:00</lastmod>
|
||||
<priority>0.80</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
</urlset>
|
||||
|
||||
35
terms-and-conditions.md
Normal file
35
terms-and-conditions.md
Normal file
@@ -0,0 +1,35 @@
|
||||
---
|
||||
layout: default
|
||||
permalink: /terms-and-conditions/
|
||||
---
|
||||
|
||||
# Terms & Conditions
|
||||
|
||||
**Last Updated:** January 1, 2025
|
||||
|
||||
Welcome to **{{ site.title }}**. By accessing and using this website, you agree to comply with the following terms and conditions.
|
||||
|
||||
## 1. Use of the Website
|
||||
|
||||
- The content provided on this site is for informational purposes only.
|
||||
- You agree not to misuse, copy, or redistribute content without prior written permission.
|
||||
- You are responsible for ensuring your use of this site complies with applicable laws.
|
||||
|
||||
## 2. Intellectual Property
|
||||
|
||||
- All articles, designs, and resources published here are the intellectual property of {{ site.title }} unless otherwise noted.
|
||||
- Unauthorized reproduction or distribution of content may result in legal action.
|
||||
|
||||
## 3. Third-Party Links & Ads
|
||||
|
||||
- Our website may display advertisements (including Google AdSense) and links to third-party sites.
|
||||
- We are not responsible for the accuracy, reliability, or content of external websites.
|
||||
|
||||
## 4. Disclaimer of Liability
|
||||
|
||||
- We do not guarantee the accuracy, completeness, or timeliness of the information provided.
|
||||
- Use of any information is at your own risk.
|
||||
|
||||
## 5. Changes to Terms
|
||||
|
||||
We reserve the right to update these terms at any time. Continued use of the site means you accept any modifications.
|
||||
Reference in New Issue
Block a user