import React, { useState, useEffect } from 'react'; import { Menu, X, ChevronRight, Code, Paintbrush, Globe, Users, Mail, Phone, MapPin, Check, ArrowRight } from 'lucide-react'; const Website = () => { const [isMenuOpen, setIsMenuOpen] = useState(false); const [activeSection, setActiveSection] = useState('home'); const [isVisible, setIsVisible] = useState({}); const [hoveredCard, setHoveredCard] = useState(null); const getAnimationClass = (elementId) => { return isVisible[elementId] ? 'opacity-100 translate-y-0' : 'opacity-0 translate-y-10'; }; useEffect(() => { const observer = new IntersectionObserver( (entries) => { entries.forEach(entry => { setIsVisible(prev => ({ ...prev, [entry.target.id]: entry.isIntersecting })); }); }, { threshold: 0.1 } ); document.querySelectorAll('[data-animate]').forEach((element) => { observer.observe(element); }); return () => observer.disconnect(); }, []); const projects = [ { title: "The Bageecha Farm", description: "A serene farmhouse website showcasing luxury stays", domain: "thebageechafarm.com", type: "Hospitality" }, { title: "SNTS Group", description: "Tour and travel website offering comprehensive solutions", domain: "sntsgroup.com", type: "Travel" }, { title: "RK Rayco", description: "Portfolio website for a leading construction company", domain: "rkrayco.com", type: "Construction" } ]; const pricingPlans = [ { name: "Basic", price: "₹19,999", features: ["5 Pages Website", "Responsive Design", "Contact Form", "Basic SEO"], popular: false }, { name: "Professional", price: "₹39,999", features: ["10 Pages Website", "Advanced Features", "Complete SEO", "3 Months Support"], popular: true }, { name: "Enterprise", price: "Custom", features: ["Unlimited Pages", "Custom Features", "Priority Support", "12 Months Support"], popular: false } ]; return (
{/* Navbar */} {/* Hero Section */}

Welcome to PROBILD

A Professional Website Development Company

{/* Portfolio Section */}

Our Portfolio

{projects.map((project, index) => (

{project.title}

{project.description}

{project.type} Visit
))}
{/* Pricing Section */}

Pricing Plans

{pricingPlans.map((plan, index) => (
setHoveredCard(index)} onMouseLeave={() => setHoveredCard(null)} > {plan.popular && (
Popular
)}

{plan.name}

{plan.price}
    {plan.features.map((feature, i) => (
  • {feature}
  • ))}
))}
{/* Contact Section */}

Get in Touch

contact@probild.in
+91 1234567890
); }; export default Website;