-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
91 lines (87 loc) · 5.56 KB
/
about.html
File metadata and controls
91 lines (87 loc) · 5.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us | Gravity Group RSA</title>
<meta name="description" content="Learn more about Gravity Group RSA, a South African company offering reliable roadside assistance and courier solutions.">
<link rel="stylesheet" href="assets/css/styles.css">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css" integrity="sha512-o8TvqnMvUJ9qJbB+oiX//SfjUvxyjE1hBWYK6YvYGwm/dKk07RMGKXJ9+DiDaGR1lBTtPl8uDJBJjtyvsK2JDg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<meta property="og:title" content="About Gravity Group RSA">
<meta property="og:description" content="Discover our mission, values and the team behind Gravity Group RSA’s 24/7 roadside assistance services.">
<meta property="og:image" content="https://source.unsplash.com/1200x630/?mechanic,assistance">
<meta property="og:type" content="article">
<meta property="og:url" content="https://ggrsa.co.za/about.html">
</head>
<body>
<header>
<div class="logo"><a href="index.html" style="color:#fff; text-decoration:none;">Gravity Group RSA</a></div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="services/index.html">Services</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<section>
<h1 class="section-title">Who We Are</h1>
<div class="about-container">
<p>Gravity Group RSA was founded with a simple purpose: to provide fast, trustworthy assistance when motorists need help on the road. Breakdowns and lockouts are stressful, and they happen when you least expect them. Our goal is to turn those emergencies into minor inconveniences by sending experienced technicians and drivers to your location 24/7.</p>
<p>Our services include emergency towing, jumpstarts, lockout assistance, tyre changes, fuel delivery and specialist courier solutions. According to industry guides, these are the services motorists rely on most during roadside emergencies【395492010251814†L88-L116】. Each of our technicians is trained to handle a wide range of vehicle issues, ensuring you’re back on the road quickly and safely.</p>
<p>We operate throughout South Africa and understand the unique challenges faced by motorists in both urban and rural areas. Whether you’re in Johannesburg, Cape Town or on a remote stretch of highway, our national network lets us reach you promptly. Customer satisfaction is at the core of everything we do; from the first call to the final handshake, we work to earn your trust.</p>
</div>
</section>
<section>
<h2 class="section-title">Our Mission & Values</h2>
<div class="about-container">
<p><strong>Reliability.</strong> When you call Gravity Group RSA, you can count on us to answer. Our assistance lines are staffed around the clock and our fleet is ready to deploy at a moment’s notice.</p>
<p><strong>Professionalism.</strong> We hire experienced drivers, mechanics and customer service staff. Ongoing training and rigorous safety standards ensure that your vehicle is treated with care.</p>
<p><strong>Transparency.</strong> We believe in fair, upfront pricing. There are no hidden fees – you only pay for the services you receive, as recommended by industry best practices【395492010251814†L146-L159】.</p>
<p><strong>Community.</strong> As a South African business, we are committed to supporting our local communities. Wherever possible we partner with local suppliers and hire staff from the areas we serve.</p>
</div>
</section>
<section>
<h2 class="section-title">Meet the Team</h2>
<div class="about-container">
<p>Our team is a diverse group of drivers, mechanics and customer care specialists united by a passion for helping others. Together we’ve assisted thousands of customers, from simple tyre changes to complex recoveries. We’re constantly learning and evolving to deliver the best service possible.</p>
</div>
</section>
<footer>
<div class="footer-inner">
<div>
<h4>Gravity Group RSA</h4>
<p>Your trusted partner for roadside assistance and courier services.</p>
<div class="social-icons">
<a href="#" aria-label="Facebook"><i class="fab fa-facebook-square"></i></a>
<a href="#" aria-label="Twitter"><i class="fab fa-twitter-square"></i></a>
<a href="#" aria-label="Instagram"><i class="fab fa-instagram"></i></a>
</div>
</div>
<div>
<h4>Quick Links</h4>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="services/index.html">Services</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
<div>
<h4>Contact</h4>
<ul>
<li>Johannesburg, Gauteng, South Africa</li>
<li>Phone: <a href="tel:+27123456789">+27 12 345 6789</a></li>
<li>Email: <a href="mailto:info@ggrsa.co.za">info@ggrsa.co.za</a></li>
</ul>
</div>
</div>
<p style="text-align:center; margin-top:2rem; font-size:0.9rem;">© <span id="year"></span> Gravity Group RSA. All rights reserved.</p>
</footer>
<script>
document.getElementById('year').textContent = new Date().getFullYear();
</script>
</body>
</html>