-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathdata.js
More file actions
52 lines (50 loc) · 3.2 KB
/
Copy pathdata.js
File metadata and controls
52 lines (50 loc) · 3.2 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
// Navigation links used across the website
export const usefulLinks = [
{ id: 1, title: 'Home' },
{ id: 2, title: 'Services' },
{ id: 3, title: 'About Us' },
{ id: 4, title: 'Contact Us' },
{ id: 5, title: 'Privacy Policy' }
];
// Big Lou Mobile Welding Services
export const services = [
{ id: 1, title: 'Construction Equipment Repair', description: 'Expert repair services for all types of construction equipment to keep your projects running smoothly.' },
{ id: 2, title: 'Truck Repair', description: 'Professional welding and fabrication services for commercial and personal trucks.' },
{ id: 3, title: 'Residential and Commercial Construction Welding', description: 'Certified welding services for residential and commercial construction projects.' },
{ id: 4, title: 'Trailers (Repair and Fabrication)', description: 'Complete trailer repair and custom fabrication services to meet your specific needs.' },
{ id: 5, title: 'Motorcycle Welding', description: 'Precision welding services for motorcycles and custom bike fabrication.' },
{ id: 6, title: 'Signs Fabrication/Repair', description: 'Custom sign fabrication and repair services for businesses and commercial properties.' },
{ id: 7, title: 'Custom Fabrications', description: 'Tailored metal fabrication solutions designed to your exact specifications.' },
{ id: 8, title: 'Ladder Racks', description: 'Custom ladder rack fabrication and installation for work vehicles.' },
{ id: 9, title: 'Aluminum Welding', description: 'Specialized aluminum welding services for lightweight and durable applications.' },
{ id: 10, title: 'Stainless Steel Welding', description: 'Professional stainless steel welding for corrosion-resistant and long-lasting results.' },
{ id: 11, title: 'Marine Repairs', description: 'Expert marine welding and repair services for boats and watercraft.' },
{ id: 12, title: 'Welding Processes: Mig, Tig, Arc, Stick, Plasma Cutting', description: 'Versatile welding capabilities including MIG, TIG, Arc, Stick welding, and plasma cutting.' },
{ id: 13, title: '24 Hour Emergency Service', description: 'Round-the-clock emergency welding and repair services when you need us most.' }
];
// Reasons to choose Big Lou Mobile Welding
export const whyChoose = [
{
id: 1,
title: 'Versatile Welding Expertise',
description:
'Our certified welders are skilled in multiple welding processes including MIG, TIG, Arc, and Stick welding, ensuring we can handle any project requirement with precision and quality.'
},
{
id: 2,
title: '24-Hour Emergency Service',
description:
'We understand that welding emergencies don\'t wait for business hours. Our 24-hour emergency service ensures we\'re available when you need us most, day or night.'
},
{
id: 3,
title: 'On-Site Convenience',
description:
'We come to you! Our mobile welding service eliminates the need to transport heavy equipment or materials. We bring our expertise and equipment directly to your location in Nassau.'
},
{
id: 4,
title: 'Certified & Professional',
description: 'All our welders are certified professionals committed to delivering the highest quality workmanship and safety standards on every project.'
}
];