chnages usa uk ios
This commit is contained in:
@@ -47,6 +47,12 @@ import {
|
||||
Watch,
|
||||
Zap,
|
||||
} from "lucide-react";
|
||||
import {
|
||||
Accordion,
|
||||
AccordionContent,
|
||||
AccordionItem,
|
||||
AccordionTrigger,
|
||||
} from "../components/ui/accordion";
|
||||
import { Button } from "@/components/ui/button";
|
||||
import { useNavigate } from "react-router-dom";
|
||||
import Spline from "@splinetool/react-spline";
|
||||
@@ -1040,7 +1046,100 @@ const IOSTechnologies = () => {
|
||||
</section>
|
||||
);
|
||||
};
|
||||
const IOSFAQs = () => {
|
||||
const faqs = [
|
||||
{
|
||||
question:
|
||||
"How Can Your Team Integrate with My Existing Team?",
|
||||
answer:
|
||||
"We specialize in integrating with third-party teams and have expertise in integrating APIs, webhooks, middleware solutions, ETL processes, and cloud-to-cloud integrations. By integrating with your existing team, we ensure data consistency, security, and minimal disruption to your business operations in the USA.",
|
||||
},
|
||||
{
|
||||
question:
|
||||
"How Can You Help with App Store Optimization (ASO)?",
|
||||
answer:
|
||||
"We optimize the app title, app description, keywords, and screenshots to improve application visibility and conversion rates. These are crucial metrics for increasing download rates.",
|
||||
},
|
||||
{
|
||||
question: "Can my iOS App Work Offline?",
|
||||
answer:
|
||||
"Yes, absolutely! We can use local data storage (CoreData) to allow core features to work without the internet. The data can be synced once the device is back online. The iOS apps use intelligent caching, meaning that it stores API responses, images, and user-specific content to the disk so they can be loaded instantly even without a network connection.",
|
||||
},
|
||||
{
|
||||
question:
|
||||
"How Often Should I Update My App after It’s Launched?",
|
||||
answer:
|
||||
"Successful iOS apps are updated 2-4 times each month for fixing in-app bugs and incorporate feature enhancements. At WDI, we provide consistent support to your business app in terms of updates and maintenance of the app. Focused on user feedback, we focus on delivering consistent support so that your app remains optimized.",
|
||||
},
|
||||
{
|
||||
question:
|
||||
"How do You Ensure My App Won’t be Rejected by Apple?",
|
||||
answer:
|
||||
"We review the App Store Guidelines before coding. We also conduct testing on the app on real devices and ensure no proxy content is used in developing this app.",
|
||||
},
|
||||
{
|
||||
question:
|
||||
"Can You Connect My App with My Existing Website or CRM?",
|
||||
answer:
|
||||
"Yes, absolutely! We build custom API (Application Programming Interfaces) to connect your business app with the backend of your current website, CMS, or CRM systems.",
|
||||
},
|
||||
{
|
||||
question:
|
||||
"What is a Discovery Phase and Why Do I Need It?",
|
||||
answer:
|
||||
"A discovery phase is a 2-to-4-week phase that determines the app’s scope, UI/UX design, and technical requirements. In this phase, we closely communicate with our clients to discuss their specific requirements. Without this phase, expensive bugs can appear in the applications, and miscommunications among parties can happen.",
|
||||
},
|
||||
];
|
||||
|
||||
|
||||
return (
|
||||
<section className="py-32 bg-black">
|
||||
<div className="container mx-auto px-6 lg:px-8">
|
||||
<motion.div
|
||||
initial={{ opacity: 0, y: 30 }}
|
||||
whileInView={{ opacity: 1, y: 0 }}
|
||||
transition={{ duration: 0.8 }}
|
||||
viewport={{ once: true }}
|
||||
className="text-center mb-20"
|
||||
>
|
||||
<h2 className="text-4xl lg:text-5xl font-semibold text-white mb-6">
|
||||
Frequently Asked Questions
|
||||
</h2>
|
||||
<p className="text-xl text-gray-300 leading-relaxed">
|
||||
Common questions about our iOS app development services.
|
||||
</p>
|
||||
</motion.div>
|
||||
|
||||
<motion.div
|
||||
initial={{ opacity: 0, y: 40 }}
|
||||
whileInView={{ opacity: 1, y: 0 }}
|
||||
transition={{ duration: 0.8, delay: 0.2 }}
|
||||
viewport={{ once: true }}
|
||||
className="max-w-4xl mx-auto"
|
||||
>
|
||||
<Accordion type="single" collapsible className="space-y-8">
|
||||
{faqs.map((faq, index) => (
|
||||
<AccordionItem
|
||||
key={index}
|
||||
value={`item-${index}`}
|
||||
className="bg-gray-900/50 backdrop-blur-md rounded-2xl border border-gray-800 px-10 shadow-lg"
|
||||
>
|
||||
<AccordionTrigger className="text-left hover:no-underline py-10 text-xl">
|
||||
<span className="font-semibold text-white">
|
||||
{faq.question}
|
||||
</span>
|
||||
</AccordionTrigger>
|
||||
<AccordionContent className="text-gray-300 pb-10 text-lg leading-relaxed">
|
||||
{faq.answer}
|
||||
</AccordionContent>
|
||||
</AccordionItem>
|
||||
))}
|
||||
</Accordion>
|
||||
</motion.div>
|
||||
</div>
|
||||
</section>
|
||||
);
|
||||
};
|
||||
// Main iOS App Development Page
|
||||
export const IOSAppDevelopmentUSA = () => {
|
||||
const navigate = useNavigate();
|
||||
@@ -1098,6 +1197,9 @@ export const IOSAppDevelopmentUSA = () => {
|
||||
},
|
||||
]}
|
||||
/>
|
||||
<section className="bg-card">
|
||||
<IOSFAQs />
|
||||
</section>
|
||||
|
||||
{/* <section className="bg-card">
|
||||
<IOSTechnologies />
|
||||
|
||||
Reference in New Issue
Block a user