diff --git a/index.html b/index.html index 4e275ec..85328f7 100644 --- a/index.html +++ b/index.html @@ -3,12 +3,15 @@ - nqs-glow-lux-web - + NQS Inspection Ltd - Premier Industrial Inspection Services + + + + - - + + diff --git a/public/lovable-uploads/0a023c3c-76e5-4475-a0de-b3e0891c9d50.png b/public/lovable-uploads/0a023c3c-76e5-4475-a0de-b3e0891c9d50.png new file mode 100644 index 0000000..7f9b1bd Binary files /dev/null and b/public/lovable-uploads/0a023c3c-76e5-4475-a0de-b3e0891c9d50.png differ diff --git a/public/lovable-uploads/9e823547-8ef1-49cf-8796-5bdd3ef81771.png b/public/lovable-uploads/9e823547-8ef1-49cf-8796-5bdd3ef81771.png new file mode 100644 index 0000000..1f8dfbd Binary files /dev/null and b/public/lovable-uploads/9e823547-8ef1-49cf-8796-5bdd3ef81771.png differ diff --git a/src/components/About.tsx b/src/components/About.tsx new file mode 100644 index 0000000..e6c2d54 --- /dev/null +++ b/src/components/About.tsx @@ -0,0 +1,153 @@ +import { Card, CardContent } from "@/components/ui/card"; +import { Badge } from "@/components/ui/badge"; +import { Award, Target, Users, Lightbulb } from "lucide-react"; + +const About = () => { + const values = [ + { + icon: Award, + title: "Excellence", + description: "Delivering the highest quality inspection services with certified professionals and cutting-edge technology." + }, + { + icon: Target, + title: "Precision", + description: "Accurate, detailed inspections that provide actionable insights for optimal operational safety." + }, + { + icon: Users, + title: "Partnership", + description: "Building long-term relationships through reliable service, transparent communication, and expert guidance." + }, + { + icon: Lightbulb, + title: "Innovation", + description: "Continuously advancing our methods and technology to provide industry-leading inspection solutions." + } + ]; + + const certifications = [ + "AWS Certified Welding Inspector", + "ASNT Level III Certified", + "API 510 Pressure Vessel Inspector", + "API 570 Piping Inspector", + "NACE Corrosion Specialist", + "ISO 9001:2015 Quality Management" + ]; + + return ( +
+
+ {/* Section Header */} +
+

+ About NQS Inspection +

+

+ Your trusted partner for comprehensive industrial inspection services + across Texas, ensuring safety and compliance in critical operations. +

+
+ + {/* Main Content Grid */} +
+ {/* Left Column - Mission & Vision */} +
+
+

Our Mission

+

+ At NQS Inspection Ltd, we are dedicated to providing exceptional non-destructive + testing and industrial inspection services that ensure the safety, reliability, + and integrity of critical infrastructure. Our certified professionals utilize + state-of-the-art technology and proven methodologies to deliver accurate, + actionable insights that help our clients maintain operational excellence. +

+
+ +
+

Our Vision

+

+ To be the leading industrial inspection company in Texas, recognized for our + technical expertise, innovative solutions, and unwavering commitment to safety. + We strive to set new standards in the industry while building lasting partnerships + with our clients through exceptional service and reliability. +

+
+ + {/* Background Image */} +
+
+
+
+ + {/* Right Column - Values & Certifications */} +
+
+

Core Values

+
+ {values.map((value, index) => { + const IconComponent = value.icon; + return ( + + +
+
+ +
+
+

{value.title}

+

{value.description}

+
+
+
+
+ ); + })} +
+
+ +
+

Certifications & Standards

+
+

+ Our team holds industry-leading certifications and adheres to the highest + professional standards, ensuring quality and compliance in every inspection. +

+
+ {certifications.map((cert, index) => ( + + {cert} + + ))} +
+
+
+ + {/* Stats */} +
+
+
500+
+
Projects Completed
+
+
+
99.9%
+
Accuracy Rate
+
+
+
+
+
+
+ ); +}; + +export default About; \ No newline at end of file diff --git a/src/components/Contact.tsx b/src/components/Contact.tsx new file mode 100644 index 0000000..d73889d --- /dev/null +++ b/src/components/Contact.tsx @@ -0,0 +1,200 @@ +import { Button } from "@/components/ui/button"; +import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"; +import { Input } from "@/components/ui/input"; +import { Label } from "@/components/ui/label"; +import { Textarea } from "@/components/ui/textarea"; +import { + Phone, + Mail, + MapPin, + Clock, + AlertCircle, + Send +} from "lucide-react"; + +const Contact = () => { + const contactInfo = [ + { + icon: Phone, + title: "Emergency Line", + details: "+1 (555) 123-4567", + subtitle: "Available 24/7 for urgent inspections" + }, + { + icon: Mail, + title: "Email", + details: "info@nqsinspection.com", + subtitle: "Response within 24 hours" + }, + { + icon: MapPin, + title: "Location", + details: "Corpus Christi, Texas", + subtitle: "Serving all of Texas" + }, + { + icon: Clock, + title: "Business Hours", + details: "Mon-Fri: 7:00 AM - 6:00 PM", + subtitle: "Emergency services available 24/7" + } + ]; + + return ( +
+
+ {/* Section Header */} +
+

+ Get In Touch +

+

+ Ready to schedule an inspection or need emergency support? + Contact our certified professionals today. +

+
+ + {/* Emergency Alert */} +
+
+ +
+

24/7 Emergency Support Available

+

+ For urgent inspection needs or emergency situations, call our hotline immediately. +

+
+
+
+ +
+ {/* Contact Information */} +
+
+

Contact Information

+
+ {contactInfo.map((info, index) => { + const IconComponent = info.icon; + return ( + + +
+
+ +
+
+

{info.title}

+

{info.details}

+

{info.subtitle}

+
+
+
+
+ ); + })} +
+
+ + {/* Service Areas */} +
+

Service Areas

+

+ We provide comprehensive inspection services throughout Texas, including: +

+
+
• Houston
+
• Corpus Christi
+
• Austin
+
• Dallas
+
• San Antonio
+
• Beaumont
+
• Port Arthur
+
• And surrounding areas
+
+
+
+ + {/* Contact Form */} +
+ + + + Schedule an Inspection + + + +
+
+ + +
+
+ + +
+
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ +