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,286 +3,331 @@ 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:
description: "Service Details | RankRunners - SEO, Web Design & Digital Marketing Agency",
"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!", 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!",
}; };
export default function ServicesDetails3() { export default function ServicesDetails3() {
return ( return (
<> <>
<Layout headerStyle={4} footerStyle={3} breadcrumbTitle="Services We Provide"> <Layout
<div> headerStyle={4}
<section className="services__details-area"> footerStyle={3}
<div className="container"> breadcrumbTitle="Services We Provide"
<div className="services__details-wrap"> >
<div className="row"> <div>
<div className="col-70 order-0 order-lg-2"> <section className="services__details-area">
<div className="services__details-content services__details-content-two"> <div className="container">
<h2 className="title">Cloud Computing</h2> <div className="services__details-wrap">
<p> <div className="row">
Managing cloud-based IT infrastructure can be complex and costly, often <div className="col-70 order-0 order-lg-2">
requiring significant investments in hardware and maintenance. Many <div className="services__details-content services__details-content-two">
businesses face challenges with scalability, data storage, and <h2 className="title">Cloud Computing</h2>
operational efficiency. RankRunners offers a solution with our Cloud <p>
Computing services, providing a flexible, scalable, and cost-effective Managing cloud-based IT infrastructure can be complex
alternative to traditional IT setups. By leveraging the power of the and costly, often requiring significant investments in
cloud, we help your business optimize resources, enhance collaboration, hardware and maintenance. Many businesses face
and ensure data security, all while reducing operational overhead. challenges with scalability, data storage, and
</p> operational efficiency. RankRunners offers a solution
<div className="services__details-thumb"> with our Cloud Computing services, providing a flexible,
<img src="/assets/img/custom/service-03-01.png" alt="" /> scalable, and cost-effective alternative to traditional
</div> IT setups. By leveraging the power of the cloud, we help
<div className="services__details-inner-three"> your business optimize resources, enhance collaboration,
<h3>Benefits:</h3> and ensure data security, all while reducing operational
<ul> overhead.
<li> </p>
<strong>Scalability</strong>: Easily scale your computing <div className="services__details-thumb">
resources up or down based on your business needs, ensuring you <img
only pay for what you use. src="/assets/img/custom/service-03-01.png"
</li> alt=""
<li> />
<strong>Cost Efficiency</strong>: Reduce capital expenditures on </div>
physical hardware and lower IT costs with our pay-as-you-go <div className="services__details-inner-three">
cloud solutions. <h3>Benefits:</h3>
</li> <ul>
<li> <li>
<strong>Enhanced Collaboration</strong>: Enable seamless access <strong>Scalability</strong>: Easily scale your
to data and applications from anywhere, improving team computing resources up or down based on your
collaboration and productivity. business needs, ensuring you only pay for what you
</li> use.
<li> </li>
<strong>Data Security</strong>: Benefit from advanced security <li>
measures and compliance standards that protect your critical <strong>Cost Efficiency</strong>: Reduce capital
data from threats and breaches. expenditures on physical hardware and lower IT costs
</li> with our pay-as-you-go cloud solutions.
<li> </li>
<strong>Disaster Recovery</strong>: Ensure business continuity <li>
with reliable backup and disaster recovery solutions that keep <strong>Enhanced Collaboration</strong>: Enable
your data safe and accessible. seamless access to data and applications from
</li> anywhere, improving team collaboration and
</ul> productivity.
</div> </li>
<div className="services__details-inner-two services__details-inner-four"> <li>
<div className="gutter-24"> <strong>Data Security</strong>: Benefit from
<div className="col-48"> advanced security measures and compliance standards
<div className="services__details-inner-img float-img"> that protect your critical data from threats and
<img src="/assets/img/custom/service-03-02.png" alt="" /> breaches.
</div> </li>
</div> <li>
<div className="col-52"> <strong>Disaster Recovery</strong>: Ensure business
<div className="services__details-inner-content-two"> continuity with reliable backup and disaster
<h3>Services:</h3> recovery solutions that keep your data safe and
<ul> accessible.
<li> </li>
<strong>Cloud Infrastructure Setup</strong>: </ul>
Designing and deploying scalable cloud </div>
infrastructure tailored to your specific business <div className="services__details-inner-two services__details-inner-four">
requirements, ensuring optimal performance and <div className="gutter-24">
reliability. <div className="col-48">
</li> <div className="services__details-inner-img float-img">
<li> <img
<strong>Data Storage Solutions</strong>: src="/assets/img/custom/service-03-02.png"
Implementing secure and efficient cloud storage alt=""
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.
</li>
<li>
<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.
</li>
<li>
<strong>Ongoing Support and Management</strong>:
Offering continuous support and management services
to keep your cloud environment running smoothly and
efficiently.
</li>
</ul>
</div>
</div>
</div>
</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
secure.
</strong>
</p>
<div className="all_services__area-six-two">
<div className="container">
<h3>
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>
<div className="contact__info mb-50">
<ul className="list-wrap">
<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>
<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>
</ul>
</div>
<h4 className="title-center">
Let RankRunners guide you to the future of business technology with our
expert cloud computing services!
</h4>
</div>
</div>
<div className="col-30">
<aside className="services__sidebar">
<div className="sidebar__widget">
<div className="services-sidebar">
<ul className="list-wrap">
<li>
<Link href="/services/search-engine-optimization">
Search Engine Optimization
<i className="flaticon-arrow-button" />
</Link>
</li>
<li>
<Link href="/services/ad-campaign-management">
Ad Campaign Management
<i className="flaticon-arrow-button" />
</Link>
</li>
<li>
<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" />
</Link>
</li>
<li>
<Link href="/services/web-development">
Web Development/Design
<i className="flaticon-arrow-button" />
</Link>
</li>
<li>
<Link href="/services/social-media-management">
Social Media Management
<i className="flaticon-arrow-button" />
</Link>
</li>
<li>
<Link href="/services/performance-monitoring">
Performance Monitoring
<i className="flaticon-arrow-button" />
</Link>
</li>
<li>
<Link href="/services/cyber-security">
Cyber Security <i className="flaticon-arrow-button" />
</Link>
</li>
<li>
<Link href="/services/website-maintenance">
Website Maintenance
<i className="flaticon-arrow-button" />
</Link>
</li>
</ul>
</div>
</div>
<div className="sidebar__widget sidebar__widget-three">
<h4 className="sidebar__widget-title">SEO Checker</h4>
<div className="sidebar__brochure sidebar__brochure-two">
<p>Check your website's SEO performance.</p>
<Link href="/#seocheck">SEO Checker</Link>
</div>
</div>
<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>
</div>
<div className="col-52">
<div className="services__details-inner-content-two">
<h3>Services:</h3>
<ul>
<li>
<strong>Cloud Infrastructure Setup</strong>:
Designing and deploying scalable cloud
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.
</li>
<li>
<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.
</li>
<li>
<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.
</li>
</ul>
</div>
</div>
</div> </div>
</section> </div>
</div> <p>
<div className="brand-area"> <strong>
<div className="container"> The initial setup and migration to a cloud environment
<h4 className="brand__content">Trusted by Numerous Companies, Worldwide</h4> typically take 3 to 6 weeks, depending on the
<div className="swiper-container brand-active"> complexity of your existing infrastructure and
<BrandActiveSlider /> 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!
</h3>
<Link href="/schedule" className="btn">
Get Started with Cloud Computing Today!
</Link>
</div> </div>
</div>
<p>
Have questions or need more details? Contact us today:
</p>
<div className="contact__info mb-50">
<ul className="list-wrap">
<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>
<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>
</ul>
</div>
<h4 className="title-center">
Let RankRunners guide you to the future of business
technology with our expert cloud computing services!
</h4>
</div> </div>
</div>
<div className="col-30">
<aside className="services__sidebar">
<div className="sidebar__widget">
<div className="services-sidebar">
<ul className="list-wrap">
<li>
<Link href="/services/search-engine-optimization">
Search Engine Optimization
<i className="flaticon-arrow-button" />
</Link>
</li>
<li>
<Link href="/services/ad-campaign-management">
Ad Campaign Management
<i className="flaticon-arrow-button" />
</Link>
</li>
<li>
<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" />
</Link>
</li>
<li>
<Link href="/services/web-development">
Web Development/Design
<i className="flaticon-arrow-button" />
</Link>
</li>
<li>
<Link href="/services/social-media-management">
Social Media Management
<i className="flaticon-arrow-button" />
</Link>
</li>
<li>
<Link href="/services/performance-monitoring">
Performance Monitoring
<i className="flaticon-arrow-button" />
</Link>
</li>
<li>
<Link href="/services/cyber-security">
Cyber Security{" "}
<i className="flaticon-arrow-button" />
</Link>
</li>
<li>
<Link href="/services/website-maintenance">
Website Maintenance
<i className="flaticon-arrow-button" />
</Link>
</li>
</ul>
</div>
</div>
<div className="sidebar__widget sidebar__widget-three">
<h4 className="sidebar__widget-title">SEO Checker</h4>
<div className="sidebar__brochure sidebar__brochure-two">
<p>Check your website's SEO performance.</p>
<Link href="/#seocheck">SEO Checker</Link>
</div>
</div>
<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>
</Layout> </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>
</>
);
} }