import React from "react"; import { Card, CardContent } from "@/components/ui/card"; import { Button } from "@/components/ui/button"; import { motion } from "framer-motion"; const HomePage = () => { return (
{/* Header Section */}

Swift Extinguishers

{/* Hero Section */}

Your Safety, Our Priority

Providing top-notch fire safety solutions in Punjab, Pakistan.

{/* Products Section */}

Our Products

{["Fire Extinguisher A", "Fire Extinguisher B", "Fire Extinguisher C"].map((product, index) => (

{product}

High-quality fire extinguishers for every need.

))}
{/* About Us Section */}

About Us

Swift Extinguishers is dedicated to providing reliable and efficient fire safety equipment. With years of experience, we serve both commercial and residential customers across Punjab, Pakistan.

{/* Contact Section */}

Contact Us

{/* Footer Section */}
); }; export default HomePage;