feat: privacy policy page

This commit is contained in:
Val 2025-07-03 17:13:08 +07:00
parent 467e8d067d
commit 5cde219b38
2 changed files with 554 additions and 274 deletions

235
app/privacy-policy/page.js Normal file
View File

@ -0,0 +1,235 @@
import Layout from "@/components/layout/Layout";
import BrandActiveSlider from "@/components/slider/BrandActiveSlider";
import Link from "next/link";
export const metadata = {
title:
"Privacy Policy | RankRunners - SEO, Web Design & Digital Marketing Agency",
description:
"Learn how RankRunners LLC collects, uses, and protects your information.",
};
export default function PrivacyPolicy() {
const currentDate = new Date().toLocaleDateString("en-US", {
year: "numeric",
month: "long",
day: "numeric",
});
return (
<>
<Layout headerStyle={4} footerStyle={3} breadcrumbTitle="Privacy Policy">
<div>
<section className="services__details-area">
<div className="container">
<div className="services__details-wrap">
<div className="row">
<div className="col-70 order-0 order-lg-2">
<div className="services__details-content services__details-content-two">
<h2 className="title">Privacy Policy</h2>
<p>
<strong>Effective Date:</strong> July 3, 2025
<br />
<strong>Last Updated:</strong> July 3, 2025
</p>
<p>
Thank you for choosing RankRunners LLC ("we", "us",
"our"). Your privacy is important to us. This Privacy
Policy outlines how we collect, use, protect, and
disclose information when you visit RankRunners.net and
use our services, which include SEO, digital marketing,
website design, and website management for business
clients.
</p>
<p>
By using our website or services, you agree to the
practices described in this Privacy Policy.
</p>
<div className="services__details-inner-three">
<h3>1. Who We Are</h3>
<p>
RankRunners LLC is a digital agency providing
business-to-business services that include search
engine optimization (SEO), digital marketing, website
design, and ongoing website management. Our services
are tailored for businesses seeking performance-driven
online growth.
</p>
</div>
<div className="services__details-inner-three">
<h3>2. Information We Collect</h3>
<p>
We may collect both personal and non-personal
information when you visit our website or engage with
our services.
</p>
<h4>a. Information You Provide Voluntarily</h4>
<ul>
<li>Name, email address, phone number</li>
<li>Company name and business information</li>
<li>
Billing and payment details (processed through
Paddle)
</li>
<li>
Project details or business goals you share via our
contact forms, proposals, or onboarding processes
</li>
</ul>
<h4>b. Information Collected Automatically</h4>
<p>
When you visit RankRunners.net, we automatically
collect:
</p>
<ul>
<li>IP address</li>
<li>Browser type and version</li>
<li>Referring/exit pages</li>
<li>Time zone and location data</li>
<li>Device type and operating system</li>
<li>Website usage behavior (via analytics)</li>
</ul>
</div>
{/* Continue with other sections */}
<div className="services__details-inner-three">
<h3>3. How We Use Your Information</h3>
<p>We use the information we collect to:</p>
<ul>
<li>Deliver our services and manage your projects</li>
<li>
Respond to inquiries and provide customer support
</li>
<li>
Send transactional and service-related
communications
</li>
<li>
Improve our website performance and user experience
</li>
<li>
Conduct internal analytics and service optimization
</li>
<li>
Process payments via our third-party provider,
Paddle
</li>
<li>
Comply with legal obligations and prevent fraud
</li>
</ul>
</div>
{/* Add remaining sections following the same pattern */}
<div className="services__details-inner-three">
<h3>13. Contact Us</h3>
<p>
If you have any questions, concerns, or requests
regarding this Privacy Policy or how we handle your
information, please contact us at:
</p>
<div className="contact__info mb-50">
<ul className="list-wrap">
<li>
<div className="icon">
<i className="flaticon-mail" />
</div>
<div className="content">
<h4 className="title">Email</h4>
<Link href="mailto:support@rankrunners.net">
support@rankrunners.net
</Link>
</div>
</li>
<li>
<div className="icon">
<i className="flaticon-phone-call" />
</div>
<div className="content">
<h4 className="title">Phone</h4>
<Link href="tel:+14702604117">
(470) 260-4117
</Link>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
<div className="col-30">
<aside className="services__sidebar">
<div className="sidebar__widget sidebar__widget-two">
<div
className="sidebar__contact sidebar__contact-two"
data-background="/assets/img/services/sidebar_contact_bg.jpg"
>
<h2 className="title">
Contact Us Any Time For Immediate Support!
</h2>
<Link href="tel:+14702604117" className="btn">
<i className="flaticon-phone-call" />
(470) 260-4117
</Link>
</div>
</div>
<div className="sidebar__widget sidebar__widget-three">
<h4 className="sidebar__widget-title">
Send Us a Message
</h4>
<div className="sidebar__form">
<form action="#">
<div className="form-grp">
<input
type="text"
name="name"
placeholder="Your Name"
/>
</div>
<div className="form-grp">
<input
type="text"
name="phone"
placeholder="Phone Number"
/>
</div>
<div className="form-grp">
<textarea
name="message"
placeholder="Type Your Message"
/>
</div>
<button type="submit" className="btn btn-two">
Send Message
</button>
</form>
</div>
</div>
</aside>
</div>
</div>
</div>
</div>
</section>
</div>
<div className="brand-area">
<div className="container">
<h4 className="brand__content">
Trusted by Numerous Companies, Worldwide
</h4>
<div className="swiper-container brand-active">
<BrandActiveSlider />
</div>
</div>
</div>
</Layout>
</>
);
}

View File

@ -3,7 +3,8 @@ import BrandActiveSlider from "@/components/slider/BrandActiveSlider";
import Link from "next/link";
export const metadata = {
title: "Service Details | RankRunners - SEO, Web Design & Digital Marketing Agency",
title:
"Service Details | RankRunners - SEO, Web Design & Digital Marketing Agency",
description:
"RankRunners provides enterprise level SEO, Web Design/Development, Digital Marketing and IT Management services for companies across all industries, regardless of scope or size. Contact support@rankrunners.net to get started today!",
};
@ -11,7 +12,11 @@ export const metadata = {
export default function ServicesDetails3() {
return (
<>
<Layout headerStyle={4} footerStyle={3} breadcrumbTitle="Services We Provide">
<Layout
headerStyle={4}
footerStyle={3}
breadcrumbTitle="Services We Provide"
>
<div>
<section className="services__details-area">
<div className="container">
@ -21,45 +26,55 @@ export default function ServicesDetails3() {
<div className="services__details-content services__details-content-two">
<h2 className="title">Cloud Computing</h2>
<p>
Managing cloud-based IT infrastructure can be complex and costly, often
requiring significant investments in hardware and maintenance. Many
businesses face challenges with scalability, data storage, and
operational efficiency. RankRunners offers a solution with our Cloud
Computing services, providing a flexible, scalable, and cost-effective
alternative to traditional IT setups. By leveraging the power of the
cloud, we help your business optimize resources, enhance collaboration,
and ensure data security, all while reducing operational overhead.
Managing cloud-based IT infrastructure can be complex
and costly, often requiring significant investments in
hardware and maintenance. Many businesses face
challenges with scalability, data storage, and
operational efficiency. RankRunners offers a solution
with our Cloud Computing services, providing a flexible,
scalable, and cost-effective alternative to traditional
IT setups. By leveraging the power of the cloud, we help
your business optimize resources, enhance collaboration,
and ensure data security, all while reducing operational
overhead.
</p>
<div className="services__details-thumb">
<img src="/assets/img/custom/service-03-01.png" alt="" />
<img
src="/assets/img/custom/service-03-01.png"
alt=""
/>
</div>
<div className="services__details-inner-three">
<h3>Benefits:</h3>
<ul>
<li>
<strong>Scalability</strong>: Easily scale your computing
resources up or down based on your business needs, ensuring you
only pay for what you use.
<strong>Scalability</strong>: Easily scale your
computing resources up or down based on your
business needs, ensuring you only pay for what you
use.
</li>
<li>
<strong>Cost Efficiency</strong>: Reduce capital expenditures on
physical hardware and lower IT costs with our pay-as-you-go
cloud solutions.
<strong>Cost Efficiency</strong>: Reduce capital
expenditures on physical hardware and lower IT costs
with our pay-as-you-go cloud solutions.
</li>
<li>
<strong>Enhanced Collaboration</strong>: Enable seamless access
to data and applications from anywhere, improving team
collaboration and productivity.
<strong>Enhanced Collaboration</strong>: Enable
seamless access to data and applications from
anywhere, improving team collaboration and
productivity.
</li>
<li>
<strong>Data Security</strong>: Benefit from advanced security
measures and compliance standards that protect your critical
data from threats and breaches.
<strong>Data Security</strong>: Benefit from
advanced security measures and compliance standards
that protect your critical data from threats and
breaches.
</li>
<li>
<strong>Disaster Recovery</strong>: Ensure business continuity
with reliable backup and disaster recovery solutions that keep
your data safe and accessible.
<strong>Disaster Recovery</strong>: Ensure business
continuity with reliable backup and disaster
recovery solutions that keep your data safe and
accessible.
</li>
</ul>
</div>
@ -67,7 +82,10 @@ export default function ServicesDetails3() {
<div className="gutter-24">
<div className="col-48">
<div className="services__details-inner-img float-img">
<img src="/assets/img/custom/service-03-02.png" alt="" />
<img
src="/assets/img/custom/service-03-02.png"
alt=""
/>
</div>
</div>
<div className="col-52">
@ -77,36 +95,41 @@ export default function ServicesDetails3() {
<li>
<strong>Cloud Infrastructure Setup</strong>:
Designing and deploying scalable cloud
infrastructure tailored to your specific business
requirements, ensuring optimal performance and
reliability.
infrastructure tailored to your specific
business requirements, ensuring optimal
performance and reliability.
</li>
<li>
<strong>Data Storage Solutions</strong>:
Implementing secure and efficient cloud storage
options that accommodate your data needs while
ensuring quick access and backup.
Implementing secure and efficient cloud
storage options that accommodate your data
needs while ensuring quick access and backup.
</li>
<li>
<strong>Cloud Migration</strong>: Facilitating a
smooth transition of your existing systems and data
to the cloud, minimizing downtime and disruption.
<strong>Cloud Migration</strong>: Facilitating
a smooth transition of your existing systems
and data to the cloud, minimizing downtime and
disruption.
</li>
<li>
<strong>Application Hosting</strong>: Hosting and
managing your business applications in the cloud for
improved accessibility and reduced maintenance.
<strong>Application Hosting</strong>: Hosting
and managing your business applications in the
cloud for improved accessibility and reduced
maintenance.
</li>
<li>
<strong>Security and Compliance</strong>: Providing
robust security measures and compliance solutions to
protect your data and meet industry regulations.
<strong>Security and Compliance</strong>:
Providing robust security measures and
compliance solutions to protect your data and
meet industry regulations.
</li>
<li>
<strong>Ongoing Support and Management</strong>:
Offering continuous support and management services
to keep your cloud environment running smoothly and
efficiently.
<strong>
Ongoing Support and Management
</strong>
: Offering continuous support and management
services to keep your cloud environment
running smoothly and efficiently.
</li>
</ul>
</div>
@ -115,25 +138,28 @@ export default function ServicesDetails3() {
</div>
<p>
<strong>
The initial setup and migration to a cloud environment typically
take 3 to 6 weeks, depending on the complexity of your existing
infrastructure and specific needs. Our ongoing support is
continuous, ensuring your cloud services remain optimized and
The initial setup and migration to a cloud environment
typically take 3 to 6 weeks, depending on the
complexity of your existing infrastructure and
specific needs. Our ongoing support is continuous,
ensuring your cloud services remain optimized and
secure.
</strong>
</p>
<div className="all_services__area-six-two">
<div className="container">
<h3>
Efficiently scale your IT infrastructure with our innovative
cloud solutions!
Efficiently scale your IT infrastructure with our
innovative cloud solutions!
</h3>
<Link href="/schedule" className="btn">
Get Started with Cloud Computing Today!
</Link>
</div>
</div>
<p>Have questions or need more details? Contact us today:</p>
<p>
Have questions or need more details? Contact us today:
</p>
<div className="contact__info mb-50">
<ul className="list-wrap">
<li>
@ -142,7 +168,9 @@ export default function ServicesDetails3() {
</div>
<div className="content">
<h4 className="title">Phone</h4>
<Link href="tel:+14702604117">(470) 260-4117</Link>
<Link href="tel:+14702604117">
(470) 260-4117
</Link>
</div>
</li>
<li>
@ -159,8 +187,8 @@ export default function ServicesDetails3() {
</ul>
</div>
<h4 className="title-center">
Let RankRunners guide you to the future of business technology with our
expert cloud computing services!
Let RankRunners guide you to the future of business
technology with our expert cloud computing services!
</h4>
</div>
</div>
@ -182,13 +210,18 @@ export default function ServicesDetails3() {
</Link>
</li>
<li>
<Link href="/services/cloud-computing" className="active">
Cloud Computing <i className="flaticon-arrow-button" />
<Link
href="/services/cloud-computing"
className="active"
>
Cloud Computing{" "}
<i className="flaticon-arrow-button" />
</Link>
</li>
<li>
<Link href="/services/lead-generation">
Lead Generation <i className="flaticon-arrow-button" />
Lead Generation{" "}
<i className="flaticon-arrow-button" />
</Link>
</li>
<li>
@ -211,7 +244,8 @@ export default function ServicesDetails3() {
</li>
<li>
<Link href="/services/cyber-security">
Cyber Security <i className="flaticon-arrow-button" />
Cyber Security{" "}
<i className="flaticon-arrow-button" />
</Link>
</li>
<li>
@ -245,11 +279,17 @@ export default function ServicesDetails3() {
</div>
</div>
<div className="sidebar__widget sidebar__widget-three">
<h4 className="sidebar__widget-title">Send Us a Message</h4>
<h4 className="sidebar__widget-title">
Send Us a Message
</h4>
<div className="sidebar__form">
<form action="#">
<div className="form-grp">
<input type="text" name="name" placeholder="Your Name" />
<input
type="text"
name="name"
placeholder="Your Name"
/>
</div>
<div className="form-grp">
<input
@ -259,7 +299,10 @@ export default function ServicesDetails3() {
/>
</div>
<div className="form-grp">
<textarea name="message" placeholder="Type Your Message" />
<textarea
name="message"
placeholder="Type Your Message"
/>
</div>
<button type="submit" className="btn btn-two">
Send Message
@ -276,7 +319,9 @@ export default function ServicesDetails3() {
</div>
<div className="brand-area">
<div className="container">
<h4 className="brand__content">Trusted by Numerous Companies, Worldwide</h4>
<h4 className="brand__content">
Trusted by Numerous Companies, Worldwide
</h4>
<div className="swiper-container brand-active">
<BrandActiveSlider />
</div>