Loading...

Loading...

Showing 1923 results
Post Filter

test11
test11
7 days ago
41
Elit excepteur ipsu
Deserunt Irure Ipsa, Bhojpur, Aamchowk रु 806
Comment
Share
Save
Buddha Manandhar
Buddha Manandhar
1 weeks ago
603
Calculating an average review helps you understand the overall level of customer satisfaction. To find it, multiply each rating by the number of users who gave it, add them up, and divide by the total number of reviewers. For example, if 3 people gave 5 stars, 5 gave 4 stars, and 4 gave 3 stars, your average review is 3.91 out of 5. You can also calculate the percentage of 5-star reviews to see how satisfied your top customers are. 🧮 How to Calculate a Review (Example) Rating * No. of People ⭐⭐⭐⭐⭐ (5 stars) * 3 ⭐⭐⭐⭐ (4 stars) * 5 ⭐⭐⭐ (3 stars) * 4 Step 1: Multiply rating × number of people → (5×3) + (4×5) + (3×4) = 15 + 20 + 12 = 47 Step 2: Divide the total score by the total people → 47 ÷ (3+5+4) = 47 ÷ 12 = 3.91 / 5 average rating Step 3: Find % who gave 5 stars → (3 ÷ 12) × 100 = 25% users gave 5-star rating
Chauraha, Rupandehi, Butwal Negotiable
Comment
Share
Save
Buddha Manandhar
Buddha Manandhar
1 weeks ago
504
SEO-friendly and affordable complete website development packages — including domain, hosting, design, and full management service plan. 💼 Our Service Plans 🟢 Basic Plan Everything you need to get started online. Includes: Premium Domain Logo Concept Design Web Hosting Website Development Complete Management for the first 1 year 🔵 Standard Plan A balanced plan for growing businesses. Includes: Everything in Basic Plan, plus SEO Optimization Business Email Setup Content Updates & Maintenance (1 Year) Priority Support 🔴 Advance Plan A complete package for scaling and branding. Includes: Everything in Standard Plan, plus Advanced Design Customization Google Ads / Meta Ads Setup Analytics & Performance Reporting Dedicated Account Manager Would you like me to format this for a website layout (HTML/CSS or card-style design)? import React, { useState } from 'react'; import { motion } from 'framer-motion'; import { Check, Star, Sparkles } from 'lucide-react'; import { Helmet } from 'react-helmet'; // SEO-friendly Website Service Plans component export default function ServicePlans() { const [billing, setBilling] = useState('yearly'); // 'monthly' or 'yearly' const plans = [ { id: 'basic', name: 'Basic Website Plan', priceMonthly: 29, priceYearly: 290, tag: 'Starter Package', bullets: [ 'Premium domain registration (1 year)', 'Logo concept and brand identity design', 'Reliable web hosting (1 year)', 'Responsive website development (up to 5 pages)', 'Full website management and updates for the first year', ], }, { id: 'standard', name: 'Standard Website Plan', priceMonthly: 69, priceYearly: 690, tag: 'Most Popular', bullets: [ 'Everything in Basic Plan', 'SEO optimization for better Google ranking', 'Business email setup (up to 5 accounts)', 'Content updates and maintenance (1 year)', 'Priority customer support', ], }, { id: 'advance', name: 'Advance Website Plan', priceMonthly: 149, priceYearly: 1490, tag: 'Enterprise Package', bullets: [ 'Everything in Standard Plan', 'Advanced design customization and animations', 'Google Ads & Meta Ads setup (ad spend excluded)', 'Analytics, performance, and SEO reporting', 'Dedicated account manager and technical support', ], }, ]; const priceFor = (plan) => (billing === 'monthly' ? plan.priceMonthly : plan.priceYearly); return ( <main className="max-w-6xl mx-auto px-6 py-12"> {/* SEO Meta Tags */} <Helmet> <title>Complete Website Service Plans | Domain, Hosting & SEO Packages</title> <meta name="description" content="Affordable and SEO-friendly website service plans including premium domain, hosting, web design, logo concept, and complete management for the first year." /> <meta name="keywords" content="website service plans, SEO-friendly website, domain and hosting, website design packages, Nepal web development, affordable web plans" /> </Helmet> <header className="text-center mb-8"> <h1 className="text-3xl sm:text-4xl font-extrabold">Complete Website Service Plans</h1> <p className="text-gray-600 mt-2">SEO-friendly and affordable website development packages — including domain, hosting, design, and full management for the first year.</p> </header> <div className="flex items-center justify-center mb-8"> <div className="inline-flex items-center rounded-full bg-slate-100 p-1"> <button aria-pressed={billing === 'monthly'} onClick={() => setBilling('monthly')} className={`px-4 py-2 rounded-full font-medium transition ${billing === 'monthly' ? 'bg-white shadow' : 'text-slate-600'}`} > Monthly </button> <button aria-pressed={billing === 'yearly'} onClick={() => setBilling('yearly')} className={`px-4 py-2 rounded-full font-medium transition ${billing === 'yearly' ? 'bg-white shadow' : 'text-slate-600'}`} > Yearly </button> </div> </div> <section className="grid gap-6 md:grid-cols-3"> {plans.map((plan, i) => ( <motion.article key={plan.id} initial={{ opacity: 0, y: 8 }} animate={{ opacity: 1, y: 0 }} transition={{ delay: i * 0.08 }} className="rounded-2xl border p-6 bg-white shadow-sm hover:shadow-lg flex flex-col" > <div className="flex items-center justify-between"> <div> <h2 className="text-xl font-semibold">{plan.name}</h2> <p className="text-sm text-gray-500 mt-1">{plan.tag}</p> </div> {plan.id === 'standard' && ( <div className="flex items-center gap-1 text-sm font-medium text-amber-600"> <Star size={16} /> <span>Popular</span> </div> )} </div> <div className="mt-6 flex items-baseline gap-3"> <span className="text-3xl font-extrabold">${priceFor(plan)}</span> <span className="text-sm text-gray-500">/ {billing === 'monthly' ? 'month' : 'year'}</span> </div> <p className="mt-4 text-sm text-gray-600">Ideal for {plan.name === 'Basic Website Plan' ? 'new startups' : plan.name === 'Standard Website Plan' ? 'growing businesses' : 'established enterprises'} looking for an SEO-optimized web presence.</p> <ul className="mt-6 space-y-3 flex-1"> {plan.bullets.map((b, idx) => ( <li key={idx} className="flex items-start gap-3"> <span className="mt-1"><Check size={16} aria-hidden="true" /></span> <span className="text-sm text-gray-700">{b}</span> </li> ))} </ul> <div className="mt-6"> <button className="w-full py-3 rounded-xl bg-sky-600 text-white font-semibold shadow hover:bg-sky-500 transition" aria-label={`Choose ${plan.name} Plan`}>Choose {plan.name}</button> <button className="w-full mt-3 py-2 rounded-lg border text-sm text-slate-700" aria-label="Contact Sales for Custom Website Plan">Contact Sales</button> </div> <footer className="mt-4 text-xs text-gray-400">* Prices shown are sample values. Final quotes depend on project scope and customization.</footer> </motion.article> ))} </section> <div className="mt-10 bg-slate-50 border rounded-lg p-5 flex flex-col md:flex-row items-start md:items-center justify-between gap-4"> <div className="flex items-start gap-4"> <Sparkles size={32} className="text-sky-500" aria-hidden="true" /> <div> <h3 className="font-semibold">Need a custom website solution?</h3> <p className="text-sm text-gray-600">We can mix features from any plan or create a unique enterprise-level web package tailored to your brand goals and SEO strategy.</p> </div> </div> <div> <a href="#contact" className="inline-block px-6 py-3 rounded-lg bg-amber-500 text-white font-semibold shadow" aria-label="Request a Website Quote">Request a Quote</a> </div> </div> </main> ); }
Chauraha, Rupandehi, Butwal Negotiable
Comment
Share
Save
Amar Raw
Amar Raw
2 weeks ago
21
Dolore sapiente comm
Dolore Sunt Fugiat, Syangja, Aandhikhola रु 44
Comment
Share
Save
Buddha Manandhar
Buddha Manandhar
2 weeks ago
446
विगत लामो समयदेखि सञ्चालनमा रहेको Ghar Ghaderi Butwal (घर घडेरी बुटवल) पेज तथा ग्रुप अब gharghadeributwal.com वेब साइटमार्फत अझै आधुनिक र व्यवस्थित रूपमा सेवा विस्तार गर्दैछ। अब तपाईंलाई मिल्नेछ — ✅ घर, घडेरी, जग्गा खरिद–बिक्रीको सबै जानकारी ✅ बुटवल र तिलोत्तमाका नयाँ रियल इस्टेट अपडेटहरू ✅ व्यवसायिक अवसर र विज्ञापनका सुविधा यदि तपाईं पनि Google AdSense वा Facebook Monetization मार्फत आफ्नो व्यवसायिक साइत बनाउन चाहनुहुन्छ भने आजै सम्पर्क गर्नुहोस् 👇 📞 सम्पर्क: 9867415452 ⸻ 🔖 #Tags (SEO Optimized): #GharGhaderiButwal #GharJaggaButwalTilottama #RealEstateAgency #PropertyInvestment #Butwal #GharJaggaKarobar #SuccessBusiness #ButwalRealEstate #TilottamaProperty #NepalRealEstate
Rajmarg Chauraha, Rupandehi, Butwal Negotiable
Comment
Share
Save
Buddha Manandhar
Buddha Manandhar
3 weeks ago
1373
Prime land for sale at OM Kalika Path, Kalikanagar, Butwal. 19x28 haat plot, north-facing, ideal for residential or commercial use. Don’t miss this prime location opportunity!
Kalikanagar, Rupandehi, Butwal रु 95,00,000
Comment
Share
Save
Buddha Manandhar
Buddha Manandhar
4 weeks ago
1247
A beautiful residential house is available for sale at Gorkatta, Manigram (Tilottama Municipality, Rupandehi) for just Rs. 42,00,000. ✅ Location: Peaceful residential area, close to schools, highway, and local markets. ✅ Price: NPR 42 Lakh (Negotiable) ✅ Features: • Spacious house with proper road access • Ample rooms and modern design (bedrooms, bathrooms, kitchen, living area) • Parking space for car and bikes • 24/7 water and electricity facility • Safe & family-friendly neighborhood This property is perfect for those seeking an affordable home in Manigram Gorkatta with excellent connectivity and growth potential. 📞 Contact Now: 9867415452 to schedule a visit. मणिग्राम गोरकट्टा बजार नजिकै घर बिक्रिमा। मुल्य 42 लाख मात्र। गोरकट्टा हातबजार देखि करिब 500m दक्षिण हेल्थपोस्ट नपुग्दै राम्रो बस्ति भएको ठाउमा घरको योजना रहेको हुदा इच्छुक व्यक्तिले तु सम्पर्क गर्नु होला। बजार बस्तिको नजिक उत्तर मोडा 15/48 ft 4 धुर मा सम्पन्न हुने घरको विवरण तल हेर्नुहोस। # 1 Floor - 1 Attached Bedroom 1 Kitchen 1 Hall 1 Common Toiletbathroom = Price 42 Lakh # 1.5 Floor - 1 Attached Room 1 Common Room 1 Hall 1 Kitchen 1 Common Toilet Bathroom = Price 52 Lakh # 2 Floor - 2 Attached Room 1 Common Room 1 Kitchen 1 Hall 1 Common Toilet = Price 58 Lakh प्रशस्त कार पार्किङ्ग पुजा रूम तुलसि बोट सबैमा हुनेछ। दशै अगाडि नै बुकिङ्ग गर्दा विशेष छुट: सम्पर्क कार्यलय - राजमार्ग चौराहा बुटवल फोन/Whatsapp - ⁨9867415452⁩
Gorkatta Manigram, Rupandehi, Tilottama रु 42,00,000
Comment
Share
Save
Buddha Manandhar
Buddha Manandhar
1 months ago
1688
Residential land for sale in Tilottama Municipality, just 800 meters west from Sainikpath, Siddhartha Highway, before the old road with an east-facing turn. The property is suitable for both residential living and investment. 📍 Location: Tilottama, near Sainikpath 📏 Area: 2 Kattha (40 Dhur) 💰 Price: Rs. 2,00,000 per Dhur 🚗 Accessibility: Only 800m from Siddhartha Highway 👉 Contact now for site visit and more details. 📞 Phone: 9867415452
Sainikpath, Rupandehi, Tilottama रु 80,00,000
Comment
Share
Save
Buddha Manandhar
Buddha Manandhar
1 months ago
48
Nayamil, Rupandehi, Tilottama रु 80,00,000
Comment
Share
Save
Buddha Manandhar
Buddha Manandhar
1 months ago
2952
🏢 Restaurant for Sale – Bhairahawa Medical College Opposite 📍 Prime Location | Long-Established Business भैरहवा मेडिकल कलेजको ठिक पारि लामो समयदेखि संचालनमा रहेको रेस्टुरेन्ट तत्काल बिक्रीमा। 👉 बिक्री कारण: स्वास्थ्य सम्बन्धी समस्या 👉 राम्रो ग्राहक प्रवाह | स्थापित व्यवसाय 👉 तुरुन्तै संचालन गर्न सकिने रेडी–टु–रन सेटअप 📞 सम्पर्क: 9857015990 #RestaurantForSale #Bhairahawa #MedicalCollegeArea #PrimeLocation #EstablishedBusiness #BusinessOpportunity #UrgentSale #RupandehiBusiness
Bhairahawa, Rupandehi, Siddharthanagar Negotiable
Comment
Share
Save
Loading...
Featured View all