import React, { useState, useEffect } from 'react'; import { Building2, Ruler, Hammer, Lightbulb, Phone, Mail, MapPin, ChevronRight, Menu, X, ArrowRight, ShieldCheck, Zap, Users, Award, ExternalLink, Cpu, Facebook, Instagram, Youtube, Music2 } from 'lucide-react'; const App = () => { const [isMenuOpen, setIsMenuOpen] = useState(false); const [activeTab, setActiveTab] = useState('all'); const [scrolled, setScrolled] = useState(false); useEffect(() => { const handleScroll = () => { setScrolled(window.scrollY > 50); }; window.addEventListener('scroll', handleScroll); return () => window.removeEventListener('scroll', handleScroll); }, []); const services = [ { title: "Architectural Design", icon: , desc: "Comprehensive conceptualization to detailed design for residential and commercial spaces." }, { title: "Structural Engineering", icon: , desc: "Advanced load analysis and structural integrity planning using industry-leading software." }, { title: "Interior Design", icon: , desc: "Turnkey interior solutions that balance aesthetics with functional spatial efficiency." }, { title: "Project Management", icon: , desc: "End-to-end supervision ensuring timelines, budgets, and quality standards are met." }, { title: "Electrical & Plumbing", icon: , desc: "Efficient MEP systems design including load calculation and safety distribution." }, { title: "Cost Estimation", icon: , desc: "Detailed BOQ and financial planning to keep project costs under strict control." } ]; const projects = [ { id: 1, title: "Station Library Savar Cantonment", category: "Public", image: "https://images.unsplash.com/photo-1507842217343-583bb7270b66?auto=format&fit=crop&q=80&w=800", desc: "Modern interior design with specialized zones for reading, E-books, and children." }, { id: 2, title: "Savar Cantonment Public School", category: "Institutional", image: "https://images.unsplash.com/photo-1523050854058-8df90110c9f1?auto=format&fit=crop&q=80&w=800", desc: "Functional floor layout featuring integrated canteen and teacher lounge concepts." }, { id: 3, title: "Bashundhara B-Block Project", category: "Residential", image: "https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&q=80&w=800", desc: "High-end residential apartment design focusing on modern aesthetics and ergonomics." }, { id: 4, title: "Azmain Showroom", category: "Commercial", image: "https://images.unsplash.com/photo-1441986300917-64674bd600d8?auto=format&fit=crop&q=80&w=800", desc: "Retail space design optimized for clothing display and customer flow." }, { id: 5, title: "Showpno Chaya 2", category: "Residential", image: "https://images.unsplash.com/photo-1512917774080-9991f1c4c750?auto=format&fit=crop&q=80&w=800", desc: "Comprehensive 8th-floor furniture and layout planning for luxury living." } ]; const filteredProjects = activeTab === 'all' ? projects : projects.filter(p => p.category.toLowerCase() === activeTab.toLowerCase()); const leaders = [ { name: "Tusar Ahmed", title: "Managing Director", bio: "Visionary leader with a focus on integrating complex architectural concepts into buildable reality.", email: "rootspacebd@gmail.com", web: "www.tusharahmed.com" }, { name: "Khaleed Ul Haque", title: "Chief Operating Officer", bio: "Operational strategist ensuring project efficiency, technical accuracy, and seamless execution.", email: "rootspacebd@gmail.com", web: "www.rootspacebd.com" } ]; const socialLinks = [ { name: 'Facebook', icon: , url: 'https://facebook.com/Rootspacebd' }, { name: 'Instagram', icon: , url: 'https://instagram.com/Rootspacebd' }, { name: 'Youtube', icon: , url: 'https://youtube.com/@Rootspacebd' }, { name: 'Tiktok', icon: , url: 'https://tiktok.com/@Rootspacebd' }, ]; const scrollToSection = (id) => { setIsMenuOpen(false); const element = document.getElementById(id); if (element) { const offset = 80; const bodyRect = document.body.getBoundingClientRect().top; const elementRect = element.getBoundingClientRect().top; const elementPosition = elementRect - bodyRect; const offsetPosition = elementPosition - offset; window.scrollTo({ top: offsetPosition, behavior: 'smooth' }); } }; return (
{/* Navigation */} {/* Hero Section */}
8+ Years of Design Excellence

Rooting Innovation in Every Space.

Full-service architecture and engineering firm delivering integrated design, structural strength, and turnkey project execution for modern living.

Architecture Concept

Safety First

100% Secure Engineering

{/* Stats Section */}
{[ { label: "Active Practice", val: "8+", sub: "Years" }, { label: "Design Experience", val: "2008", sub: "Since" }, { label: "Project Variety", val: "50+", sub: "Delivered" }, { label: "Client Satisfaction", val: "100%", sub: "Rating" } ].map((stat, i) => (

{stat.val}

{stat.label}

))}
{/* Services Section */}

Expertise That Matters

Modern construction often fails due to poor coordination between design and execution. RootSpace solves this with a single-team model where architecture and engineering work in sync.

{services.map((s, i) => (
{s.icon}

{s.title}

{s.desc}

))}
{/* Projects Portfolio */}

Our Portfolio

Turning complex ideas into practical, buildable spaces with controlled cost.

{['All', 'Residential', 'Public', 'Commercial'].map((cat) => ( ))}
{filteredProjects.map((project) => (
{project.title}
{project.category}

{project.title}

{project.desc}

))}
{/* Leadership Section */}

Executive Leadership

Our team consists of professionals across architecture, engineering, and project management dedicated to updated construction methods and technical strength.

{leaders.map((leader, i) => (

{leader.name}

{leader.title}

{leader.bio}

{leader.email}
{leader.web}
))}
{/* Social Pages Section */}

Connect With RootSpace

Stay updated with our latest architectural masterpieces.

{socialLinks.map((social) => ( {social.icon} {social.name} ))}
{/* Contact Section */}

Let's Secure Your Next Development

Whether it's a private home or large-scale infrastructure, we bring global design excellence to your local project.

Our Office

Expo Tower, 1st Floor, 28 Mymensingh Lane, Bangla Motor, Dhaka-1000

Contact

+880 1869-523030 / +880 1712-599550

Email

rootspacebd@gmail.com

e.preventDefault()}>
{/* Footer */}
); }; export default App;