{/* Instructions Overlay (Disappears on hover) */}
Move cursor to scan environment
);
};
// --- AI COMPONENTS ---
const AiInsightsGenerator = () => {
const [industry, setIndustry] = useState('');
const [insights, setInsights] = useState('');
const [loading, setLoading] = useState(false);
const handleGenerate = async () => {
if (!industry.trim()) return;
setLoading(true);
const prompt = `Generate a short, impressive 2-paragraph pitch on how Skypxl's drone services (LiDAR, SLAM, Thermal, mapping, 3D digital twins) can revolutionize the following industry or project type: "${industry}". Focus on ROI, safety, and actionable insights. Format any specific service mentions using bullet points.`;
const sysInstruct = "You are an expert consultant for Skypxl - Aerial Intelligence. Be concise, professional, and highly persuasive.";
const response = await callGeminiAPI(prompt, sysInstruct);
setInsights(response);
setLoading(false);
};
return (
);
};
// --- PAGES ---
const Home = ({ setPage }) => {
useEffect(() => {
updateSEO(
"Skypxl - Aerial Intelligence | Advanced Drone Operations",
"Skypxl provides safe, efficient, and highly accurate drone solutions including LiDAR, SLAM, 3D modelling, and thermal imaging for modern industry."
);
}, []);
return (
{/* HERO SECTION */}
{/* Animated Background Elements */}
{/* Mock Grid Background */}
{/* Animated Glow */}
TRANSFORMING MODERN INDUSTRY
Data From The Sky.
Actionable Intelligence.
We believe drone technology is transforming the way industries operate, inspect, monitor, and make decisions. Gain access to critical information faster and smarter.
{/* INTRODUCTION SECTION */}
Advanced Drone Operations
Our advanced drone operations provide safe, efficient, and highly accurate solutions across a wide range of applications. We help clients gain access to critical information faster, smarter, and more cost-effectively than traditional methods.
From aerial LiDAR, photogrammetric inspections and thermal imaging to high-precision mapping, 3D modelling, and data processing, our services are designed to deliver real value across industrial, engineering, mining, infrastructure, energy, agricultural, and commercial sectors.
Capturing high-quality aerial data for actionable insights and interactive digital models.
{/* INTERACTIVE DATA VISUALIZATION SECTION */}
From Raw Data to Intelligence
Experience how we capture and process the physical world. Hover over the orthomosaic map below to reveal the rich, actionable data sets underneath.
{/* CAPABILITIES SECTION */}
Our Capabilities
Using modern UAV platforms and advanced sensor technologies, we transform raw data into intelligent, future-focused solutions.
{capabilities.map((cap, index) => (
{cap.title}
{cap.desc}
))}
{/* AI INSIGHTS SECTION */}
{/* Animated Glow Elements */}
⨠AI Industry Insights
Not sure how drone tech applies to your specific sector? Tell our Gemini AI about your industry or project type, and we'll generate a custom use-case breakdown.
{/* COMMITMENT CTA SECTION */}
Combining safety, innovation, compliance, and operational excellence.
Whether itâs capturing data from the sky, processing complex datasets, or providing clients with seamless digital access, we deliver actionable outcome solutions that are efficient, intelligent, and future-focused.
);
};
const Contact = () => {
const [message, setMessage] = useState('');
const [isAiLoading, setIsAiLoading] = useState(false);
useEffect(() => {
updateSEO(
"Contact Skypxl - Aerial Intelligence",
"Get in touch with Skypxl for innovative aerial solutions, drone inspections, and advanced 3D modeling."
);
window.scrollTo(0, 0);
}, []);
const enhanceMessage = async () => {
if (!message.trim()) return;
setIsAiLoading(true);
const prompt = `The user is writing an inquiry to Skypxl (a drone/aerial intelligence company). Please expand and professionalize this draft message. Identify which services (LiDAR, SLAM, Mapping, Thermal, etc.) might be relevant based on their draft. Draft:\n"${message}"`;
const sysInstruct = "You are an AI assistant helping a user write a professional project scope and inquiry. Output ONLY the improved message text, ready to be sent.";
const response = await callGeminiAPI(prompt, sysInstruct);
setMessage(response);
setIsAiLoading(false);
};
return (
Contact Skypxl
Ready to elevate your operations? Reach out to our team to discuss your project requirements and discover how our aerial intelligence solutions can add value.