import React from 'react';
import Header from '@/components/Header';
import Footer from '@/components/Footer';
import { Wrench, Settings, Shield, Award, Users, CheckCircle } from 'lucide-react';
const Services = () => {
const services = [
'Tig Welders', 'Pipe Welders', 'Mig Welders', 'Flux Cored Welders', 'Sub Arc Welders',
'6-GR Welders', 'Structural Welders', 'Tack Welders', 'Pipe Fitters', 'Structural Fitters',
'Supervisors', 'Foremans', 'Safety Inspectors', 'Boiler Makers', 'Scaffold Builders',
'Personnel / Laborers', 'CWI Inspectors', 'Rig Welders'
];
const specialties = [
'Jack Up Oil Rigs', 'Semi-Submersible Oil Rigs', 'Gas Land Rigs', 'Refineries',
'Platform Jackets', 'Civil Structures', 'Piled Towers', 'Platform Decks',
'Pressure Vessels', 'Structure Skids', 'Pipe Lines', 'Boats / Ships'
];
const certifications = [
'AWS Certified Welders',
'ASME Code Welding',
'ABS Marine Welding',
'API Standards',
'Quality Control Inspectors'
];
return (
{/* Hero Section with Image */}
{/* Background Image */}
{/* Geometric Elements */}
Services &
Specialties
Professional welding and fabrication services for industrial and commercial projects.
Delivering expert craftsmanship with certified welders and modern equipment.
{/* Services Section */}
{/* Services Column */}
{services.map((service, index) => (
))}
{/* Specialties Column */}
{specialties.map((specialty, index) => (
{specialty}
Specialized expertise with attention to detail and quality assurance
))}
{/* Certifications Section */}
{certifications.map((cert, index) => (
))}
Expert Team
Certified professionals with decades of experience in industrial welding
Modern Equipment
State-of-the-art welding equipment and fabrication tools
Quality Assurance
Rigorous quality control and safety standards on every project
);
};
export default Services;