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