Initial commit

This commit is contained in:
Aashish_Nepal
2024-12-11 13:15:45 +05:45
commit 2508e02c19
23 changed files with 1670 additions and 0 deletions

View File

@ -0,0 +1,47 @@
<?php
$packagesData = [
"easy_startup" => [
"title" => "EASY STARTUP",
"features" => [
"<strong>Features included!</strong>",
"Astonishing, Responsive and Adaptive Design",
"SEO Integrated Content Management System",
"Presentation/Homepage slider",
"4-10 unique website pages",
"Clients' Testimonials, Photo Gallery",
"Contact Details, Google Location Map",
"Social Media & Google Analytics Integration",
"Contact/Feedback form"
]
],
"growing_business" => [
"title" => "GROWING BUSINESS",
"features" => [
"<strong>Features included!</strong>",
"Astonishing, Responsive and Adaptive Design",
"Testimonials/Portfolios/Our team",
"Sliders for Clients/Certifications/Achievements",
"Presentation/Homepage slider",
"Contact Details, Google Location Map",
"Social Media & Google Analytics Integration",
"Contact/Feedback form / Live-Chat Integration",
"Online Booking/Ordering (E-Commerce)"
]
],
"customized_solution" => [
"title" => "CUSTOMIZED SOLUTION",
"features" => [
"<strong>Features included!</strong>",
"Astonishing, Responsive and Adaptive Design",
"Fully featured with SEO and SMO requirements.",
"Sliders for Clients/Certifications/Achievements",
"Presentation/Homepage slider",
"Contact Details, Google Location Map",
"Social Media & Google Analytics Integration",
"Contact/Feedback form / Live-Chat Integration",
"Online Booking/Ordering (E-Commerce)"
]
]
];
?>

View File

@ -0,0 +1,35 @@
<?php
// Example Data
$servicesData = [
[
"title" => "Domain & Hosting",
"description" => "We choose the best domain and hosting companies. Best in-service availability and cost...",
"icon" => "bi bi-globe",
"link" => "domain-hosting.html"
],
[
"title" => "Web Maintenance",
"description" => "We provide a complete website maintenance service from a small content update, bug fixing, troubleshooting, critical...",
"icon" => "bi bi-tools",
"link" => "domain-hosting.html"
],
[
"title" => "Web Applications",
"description" => "Remember Bibhuti Solutions for: Custom Software Development, Web Content Management System...",
"icon" => "bi bi-phone",
"link" => "domain-hosting.html"
],
[
"title" => "Logo & Graphics Design",
"description" => "Bibhuti Solutions is serving clients for several years in Logo and Graphics Design services...",
"icon" => "bi bi-brush-fill",
"link" => "domain-hosting.html"
],
[
"title" => "Home PC Service",
"description" => "Bibhuti Solutions provides home PC maintenance service for windows operating system and mac OS. We pro ...",
"icon" => "bi bi-pc-display",
"link" => "domain-hosting.html"
]
];
?>