/* global React */ const { useState } = React; /* ====== Image library ====== */ const IMG = { heroFeature: "assets/hero-feature.jpg", // Product close-ups prodInwardOutward: "assets/prod-inward-outward.jpg", prodTopHung: "assets/prod-top-hung.jpg", prodTiltTurn: "assets/prod-tilt-turn.jpg", prodFixedGlazing: "assets/prod-fixed-glazing.jpg", prodTwoTrack: "assets/prod-two-track.jpg", prodThreeTrack: "assets/prod-three-track.jpg", prodMonorail: "assets/prod-monorail.jpg", prodFlyMesh: "assets/prod-fly-mesh.jpg", prodFrenchDoor: "assets/prod-french-door.jpg", prodMultiSliding: "assets/prod-multi-sliding.jpg", // Finish swatches finishWhite: "assets/finish-white.jpg", finishOak: "assets/finish-oak.jpg", finishWalnut: "assets/finish-walnut.jpg", finishGrey: "assets/finish-grey.jpg", // Gallery installations gallery1: "assets/gallery-1.jpg", gallery2: "assets/gallery-2.jpg", gallery3: "assets/gallery-3.jpg", gallery4: "assets/gallery-4.jpg", gallery5: "assets/gallery-5.jpg", gallery6: "assets/gallery-6.jpg", }; /* ====== Small icon set ====== */ const I = { phone: (p) => , mail: (p) => , clock: (p) => , tick: (p) => , arrow: (p) => , shield: (p) => , wind: (p) => , speaker: (p) => , leaf: (p) => , thermo: (p) => , sparkle: (p) => , call: (p) => , map: (p) => , step1: (p) => , step2: (p) => , step3: (p) => , step4: (p) => , fb: (p) => , ig: (p) => , ln: (p) => , }; /* ====== TopBar ====== */ const TopBar = ({ data }) => (
Always Open • 24/7 {data.phone1} {data.email}
Showroom: Rajajinagar, Bangalore
); /* ====== Header ====== */ const Header = ({ data, onCTA }) => (
V-TECH
Building Systems Pvt. Ltd
Talk to expert {data.phone1}
); /* Render a headline string with optional **bold** and *italic* (italic = brand-colored, underlined). */ const renderRich = (str) => { if (!str) return null; // Split on **bold** then on *italic* const parts = []; let rest = str; let key = 0; const re = /(\*\*[^*]+\*\*|\*[^*]+\*)/g; let last = 0; let m; while ((m = re.exec(str)) !== null) { if (m.index > last) parts.push(str.slice(last, m.index)); const tok = m[0]; if (tok.startsWith("**")) parts.push({tok.slice(2,-2)}); else parts.push({tok.slice(1,-1)}); last = m.index + tok.length; } if (last < str.length) parts.push(str.slice(last)); return parts; }; /* ====== Hero ====== */ const Hero = ({ data, leadFormRef, formProps, headline }) => { const hl = headline || "Premium *uPVC Windows* & Doors for Indian homes that last"; return (
India's #1 uPVC Windows Manufacturer • Bangalore

{renderRich(hl)}

Energy-efficient, soundproof & weather-tested for 25,000+ hours. Designed and manufactured in Bangalore using European-grade raw material. 20+ years of trust.

{[ "100% lead-free uPVC profile", "10-year manufacturer warranty", "Soundproof & dust-proof seal", "Free on-site measurement", ].map((b) => (
{b}
))}
Call {data.phone1}
★★★★★ 4.8/5 from 1 Lakh+ happy customers across India
); }; /* ====== Lead Form ====== */ const LeadForm = ({ headline, sub, ctaLabel, offer, onSubmit }) => { const [color, setColor] = useState("white"); const [submitted, setSubmitted] = useState(false); const [form, setForm] = useState({ first: "", last: "", phone: "", email: "", req: "" }); const update = (k) => (e) => setForm((f) => ({ ...f, [k]: e.target.value })); const submit = (e) => { e.preventDefault(); if (!form.first || !form.phone) return; setSubmitted(true); onSubmit && onSubmit({ ...form, color }); }; if (submitted) { return (

Thanks, {form.first}!

Our team will call you within 15 minutes on {form.phone} to schedule your free site visit.

Or call us directly: +91 97404 22863
); } return (
Limited Offer

{headline}

{sub}

{offer && (
{offer}
)}
{[ { id: "white", label: "White", cls: "swatch-white" }, { id: "wood", label: "Wooden Finish", cls: "swatch-wood" }, { id: "grey", label: "Grey", cls: "swatch-grey" }, { id: "black", label: "Black", cls: "swatch-black" }, ].map((c) => ( ))}

🔒 Your details are safe with us. No spam, ever. We'll call within 15 minutes.

); }; /* ====== Hero side visual ====== */ const HeroVisual = () => (
25K+
Hours weather tested
Subjected to extreme weather, surpasses
European quality standards →
); /* ====== Stats strip ====== */ const Stats = () => (
{[ { num: "1 Lakh+", lab: "Happy Customers" }, { num: "200+", lab: "Projects Completed" }, { num: "20+", lab: "Years of Experience" }, { num: "5+", lab: "Quality Certifications" }, ].map((s, i) => (
{s.num.match(/^[\d.]+/)?.[0]}{s.num.replace(/^[\d.]+/, '')}
{s.lab}
))}
); /* ====== Why uPVC ====== */ const Why = () => { const benefits = [ { icon: , title: "Energy Efficient", desc: "Multi-chambered profiles + double glazing keep your home up to 8°C cooler, slashing AC bills." }, { icon: , title: "Soundproof", desc: "Up to 42dB sound insulation. Sleep better even on busy roads — perfect for Bangalore traffic." }, { icon: , title: "Dust & Weather Proof", desc: "EPDM gasket seal blocks dust, monsoon water and pollen. Built for Indian climate extremes." }, { icon: , title: "Maintenance Free", desc: "No painting, no rusting, no termites. Wipe with a damp cloth — looks new for decades." }, { icon: , title: "100% Lead Free", desc: "Made with European-grade raw material from Fortune 500 suppliers. Safe for your family." }, { icon: , title: "Surpasses EU Standards", desc: "25,000+ hours of weather testing. Outperforms European quality benchmarks in every test." }, ]; return (
Why Choose uPVC

Six reasons families switch to V-Tech uPVC

Wooden frames warp. Aluminium conducts heat. uPVC does neither — and it lasts 30+ years.

{benefits.map((b, i) => (
{b.icon}
0{i+1}

{b.title}

{b.desc}

))}
); }; /* ====== Products ====== */ const Products = ({ onQuote }) => { const tabs = [ { id: "all", label: "All", count: 9 }, { id: "casement", label: "Casement", count: 4 }, { id: "sliding", label: "Sliding", count: 4 }, { id: "doors", label: "Doors", count: 2 }, ]; const [active, setActive] = useState("all"); const items = [ { id: 1, cat: "casement", name: "Inward / Outward Opening", desc: "Classic side-hinged windows. Opens fully for maximum airflow.", img: IMG.prodInwardOutward, badge: "Best Seller" }, { id: 2, cat: "casement", name: "Top Hung Casement", desc: "Hinged at the top, opens outward. Great for bathrooms & rain protection.", img: IMG.prodTopHung }, { id: 3, cat: "casement", name: "Tilt & Turn Casement", desc: "Two ways to open — tilt for ventilation, turn for full access.", img: IMG.prodTiltTurn, badge: "Premium" }, { id: 4, cat: "casement", name: "Fixed Glazing", desc: "Floor-to-ceiling fixed windows for unobstructed views.", img: IMG.prodFixedGlazing }, { id: 5, cat: "sliding", name: "Two Track Sliding", desc: "Space-saving sliders with smooth rolling movement.", img: IMG.prodTwoTrack, badge: "Popular" }, { id: 6, cat: "sliding", name: "Three Track Sliding", desc: "Wider openings, more glass. Perfect for living rooms & balconies.", img: IMG.prodThreeTrack }, { id: 7, cat: "sliding", name: "Monorail Sliding", desc: "Premium single-track sliders for a clean, modern look.", img: IMG.prodMonorail }, { id: 8, cat: "sliding", name: "Fly Mesh Sliding", desc: "Inbuilt mosquito mesh. Keep windows open without the bugs.", img: IMG.prodFlyMesh }, { id: 9, cat: "doors", name: "French Doors", desc: "Elegant double doors for patios, balconies & garden access.", img: IMG.prodFrenchDoor, badge: "Elegant" }, { id: 10, cat: "doors", name: "Multi Sliding Doors", desc: "Wide-span sliders for villas. Up to 4 panels.", img: IMG.prodMultiSliding }, ]; const visible = items.filter((i) => active === "all" || i.cat === active); return (
Window & Door Range

A complete uPVC range — engineered in Bangalore

From compact bathroom windows to wide-span villa doors, every system is custom-made to your opening.

{tabs.map((t) => ( ))}
{visible.slice(0,9).map((p) => ( ))}
); }; const ProductCard = ({ p, onQuote }) => { return (
{p.badge &&
{p.badge}
} {p.name} { e.currentTarget.style.display = 'none'; e.currentTarget.parentElement.classList.add('img-fallback'); }} />

{p.name}

{p.desc}

); }; /* ====== Process ====== */ const Process = () => { const steps = [ { ic: , title: "Book Free Visit", desc: "Share your details. Our expert visits at a time that suits you." }, { ic: , title: "Site Measurement", desc: "Accurate laser measurement and design recommendations for every opening." }, { ic: , title: "Custom Manufacturing", desc: "We manufacture in our Bengaluru factory using European-grade profiles." }, { ic: , title: "Installation & Warranty", desc: "Clean installation by our team + 10-year manufacturer warranty." }, ]; return (
From quote to install in 21 days

How it works

A simple four-step process. We handle measurement, design, manufacturing and installation — all in-house.

{steps.map((s, i) => (
0{i+1}
{s.ic}

{s.title}

{s.desc}

))}
); }; /* ====== Finishes ====== */ const Finishes = () => { const finishes = [ { lab: "Classic White", desc: "Timeless. The most popular choice.", img: IMG.finishWhite, dark: false }, { lab: "Golden Oak", desc: "Warm wood-grain laminate.", img: IMG.finishOak, dark: true }, { lab: "Dark Walnut", desc: "Rich teak-like finish.", img: IMG.finishWalnut, dark: true }, { lab: "Anthracite Grey", desc: "Modern, architectural look.", img: IMG.finishGrey, dark: true }, ]; return (
Color & Texture Options

Choose a finish that fits your home

Premium foil-laminated finishes that won't fade, peel or need repainting.

{finishes.map((f, i) => (
{f.lab}
{f.lab}
{f.desc}
))}
); }; /* ====== Gallery: real installations ====== */ const Gallery = () => { const shots = [ { img: IMG.gallery1, cap: "Modern home exterior, Bangalore", tag: "Casement + Fixed" }, { img: IMG.gallery2, cap: "Premium tower balcony, Hebbal", tag: "Multi-Sliding Doors" }, { img: IMG.gallery3, cap: "Independent villa, Sarjapur Rd", tag: "Casement + Fixed" }, { img: IMG.gallery4, cap: "High-rise apartment, Indiranagar", tag: "Fixed Glazing" }, { img: IMG.gallery5, cap: "Garden-facing villa, Whitefield", tag: "French Door" }, { img: IMG.gallery6, cap: "Bedroom installation, Bangalore", tag: "Soundproof Casement" }, ]; return ( ); }; /* ====== Clients ====== */ const Clients = () => { // Real V-Tech client logos hot-linked from their own CDN. const clients = [ "https://vtechwindows.com/wp-content/uploads/2026/01/Picture1.jpg", "https://vtechwindows.com/wp-content/uploads/2026/01/Picture2.jpg", "https://vtechwindows.com/wp-content/uploads/2026/01/Picture3.jpg", "https://vtechwindows.com/wp-content/uploads/2026/01/Picture4.jpg", "https://vtechwindows.com/wp-content/uploads/2026/01/Picture5.jpg", "https://vtechwindows.com/wp-content/uploads/2026/01/Picture7.jpg", "https://vtechwindows.com/wp-content/uploads/2026/01/Picture8.jpg", "https://vtechwindows.com/wp-content/uploads/2026/01/Picture9.jpg", "https://vtechwindows.com/wp-content/uploads/2026/01/Picture10.jpg", "https://vtechwindows.com/wp-content/uploads/2026/01/Picture11.png", "https://vtechwindows.com/wp-content/uploads/2026/01/Picture13.jpg", "https://vtechwindows.com/wp-content/uploads/2026/01/Picture14.jpg", "https://vtechwindows.com/wp-content/uploads/2026/01/Picture15.jpg", "https://vtechwindows.com/wp-content/uploads/2026/01/Picture16.jpg", "https://vtechwindows.com/wp-content/uploads/2026/01/Picture17.jpg", "https://vtechwindows.com/wp-content/uploads/2026/01/Picture18.png", "https://vtechwindows.com/wp-content/uploads/2026/01/Picture19.jpg", "https://vtechwindows.com/wp-content/uploads/2026/01/Picture20.jpg", "https://vtechwindows.com/wp-content/uploads/2026/01/Picture21.png", "https://vtechwindows.com/wp-content/uploads/2026/01/logo-dayananda-college.png", ]; return (
Trusted by India's Best

Specified by 200+ leading builders & institutions

From luxury residential towers to hospitals, malls and IT parks across India.

{clients.map((src, i) => (
Client logo
))}
); }; /* Multi-color "G" mark used by Google Reviews widgets. */ const GoogleG = ({ size = 18 }) => ( ); /* ====== Reviews — Google-Reviews style ====== */ const Reviews = () => { const reviews = [ { name: "Priya Sharma", place: "Whitefield", when: "2 weeks ago", color: "#1a73e8", q: "The traffic noise on Old Airport Road used to keep us up. After V-Tech installed sliding windows in the bedroom, it's completely silent. Genuine quality." }, { name: "Anand Reddy", place: "HSR Layout", when: "a month ago", color: "#34a853", q: "Got quotes from 3 vendors. V-Tech wasn't the cheapest but the build quality, German hardware, and 10-year warranty made the choice easy. Installation was super clean." }, { name: "Meera Iyer", place: "Sarjapur Road", when: "3 weeks ago", color: "#ea4335", q: "Monsoon used to flood our balcony. We replaced 11 windows and the French door with V-Tech. Zero leakage in two monsoons. Highly recommend." }, { name: "Karthik V.", place: "Indiranagar", when: "5 days ago", color: "#fbbc05", q: "The tilt-and-turn windows are a game changer. Easy to clean from inside, locks properly, and the wooden finish looks premium. Worth every rupee." }, { name: "Sunita Rao", place: "Jayanagar", when: "2 months ago", color: "#9c27b0", q: "Their site visit was on time, the quote was transparent — no hidden costs. Factory tour convinced us. AC bills came down nearly 30% after installation." }, { name: "Rohan Mehta", place: "Hebbal", when: "a month ago", color: "#0e4b8c", q: "I had aluminium windows before and they used to rust every monsoon. Switched to V-Tech uPVC across the villa. Two years in — looks brand new." }, ]; return (
4.8 ★★★★★
Based on 1,250+ Google reviews
e.preventDefault()}> See all reviews
{reviews.map((r, i) => (
{r.name.charAt(0)}
{r.name}
Local Guide · {r.place}
★★★★★ {r.when}

{r.q}

))}
); }; /* ====== FAQ ====== */ const FAQ = () => { const items = [ { q: "How long does the entire process take?", a: "From your first site visit to final installation, the typical timeline is 18–21 days. This includes measurement, design approval, custom manufacturing in our Bengaluru factory, and on-site installation by our certified team." }, { q: "Are V-Tech uPVC windows costlier than aluminium?", a: "On day one, uPVC windows are about 10–20% costlier than aluminium. But over a 15-year period, the lower energy bills (better insulation), zero maintenance, and longer lifespan make uPVC significantly cheaper. We provide a transparent ROI calculation during your site visit." }, { q: "What warranty do you provide?", a: "We offer a 10-year manufacturer warranty on the uPVC profile and 2 years on hardware (locks, hinges, rollers). Glass is covered against manufacturing defects. Our team also provides free annual service for the first two years." }, { q: "Can I see your products before deciding?", a: "Yes! Visit our showroom at M.N.S. Arcade, Rajajinagar, Bangalore — Dr. Rajkumar Road, 6th Block. You can also tour our manufacturing facility at Kalenahalli. We strongly recommend visiting before finalizing." }, { q: "Do you handle removal of old windows?", a: "Absolutely. Our installation team safely removes existing windows, disposes of debris, and installs the new ones — no separate contractor needed. We also fix any wall damage post-installation." }, { q: "Which areas do you serve?", a: "We serve all of Bangalore — Whitefield, Sarjapur, Electronic City, HSR, Indiranagar, Hebbal, Jayanagar, Rajajinagar and surroundings. We also undertake large projects across Karnataka and pan-India through our developer network." }, ]; const [open, setOpen] = useState(0); return (
Frequently Asked

Everything you wanted to ask about uPVC

{items.map((it, i) => (
{open === i &&
{it.a}
}
))}
); }; /* ====== Final CTA + Contact ====== */ const FinalCTA = ({ data, onQuote }) => (
Ready to upgrade?

Book your free site consultation today

Our expert will visit, measure your openings, suggest the right window system, and give you a transparent quote — no obligation.

Call {data.phone1}

Showroom

Visit us in Rajajinagar
Address
No. 693, M.N.S Arcade, East Facing 3rd Floor,
Dr. Rajkumar Rd, 6th Block, Rajajinagar,
Bangalore, Karnataka — 560010
Email

Factory

State-of-the-art manufacturing
Address
4GW7+P2Q, Kalenahalli,
Bengaluru, Karnataka — 560089
Hours
Open 24/7 • Mon–Sun
Capacity
10,000+ uPVC units / year
); /* ====== Footer ====== */ const Footer = () => (
V-Tech Building Systems Pvt. Ltd
© 2026 • All rights reserved
); /* ====== Mobile floating CTA ====== */ const FloatingCTA = ({ data, onQuote }) => (
Call Now
); Object.assign(window, { TopBar, Header, Hero, HeroVisual, Stats, Why, Products, Process, Finishes, Gallery, Clients, Reviews, FAQ, FinalCTA, Footer, FloatingCTA, });