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,6 +1046,91 @@ const IOSTechnologies = () => {
|
||||
);
|
||||
};
|
||||
|
||||
const IOSFAQs = () => {
|
||||
const faqs = [
|
||||
{
|
||||
question:
|
||||
"What Technologies and Languages Do You Utilise for Contemporary iOS Apps?",
|
||||
answer:
|
||||
"The main language that our experienced iOS developers at WDI use for iOS development is Swift. This is a fast, intuitive, and safe advanced framework for iOS development. The Integrated Development Environment (IDE) used is Xcode. This runs exclusively on macOS. However, for user interfaces, Apply currently promotes SwiftUI for an indicative approach.",
|
||||
},
|
||||
{
|
||||
question: "What Is the Estimated Cost of Developing the iOS App?",
|
||||
answer:
|
||||
"iOS app development costs depend on complexity, features, design requirements, and developer location. A basic app may take a few months to develop, while a complex app with backend integration can take up to six months or a year or more.",
|
||||
},
|
||||
{
|
||||
question:
|
||||
"How Do You Make the iOS App Get Approved by Apple and Launch It on the App Store?",
|
||||
answer:
|
||||
"Our developers strictly adhere to the Human Interface Guidelines given by Apple, which ensures intuitive navigation and UI of the app. Furthermore, we submit a production-ready app and avoid every sort of placeholder content. If your app offers digital goods, we ensure that your app smoothly integrates in-app purchases.",
|
||||
},
|
||||
{
|
||||
question: "What Security Measures are Involved in iOS Apps?",
|
||||
answer:
|
||||
"iOS provides enhanced security through data encryption, a keychain for storing credentials, and strict app sandbox guidelines. All of our iOS developers follow Apple’s Secure Coding Guide and use HTTPS for all network communication.",
|
||||
},
|
||||
{
|
||||
question:
|
||||
"Why Should My Business Choose Native iOS Development Over Cross-Platform?",
|
||||
answer:
|
||||
"Native iOS apps are developed particularly for Apple hardware using Swift or Objective-C, which offers greater performance, better security, and an engaging user interface. Native apps offer faster response times and effective integration with iOS native features.",
|
||||
},
|
||||
{
|
||||
question: "Do You Offer Post-Development Support and Maintenance?",
|
||||
answer:
|
||||
"Yes, absolutely! We provide end-to-end post-launch support and maintenance packages for your iOS apps. This will include:\n24/7 Technical Support\nBug fixes and security patches\nPerformance monitoring and optimisation\nFeature enhancements and updates\nIn-app infrastructure management",
|
||||
},
|
||||
];
|
||||
|
||||
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 IOSAppDevelopmentUK = () => {
|
||||
const navigate = useNavigate();
|
||||
@@ -1097,7 +1188,8 @@ export const IOSAppDevelopmentUK = () => {
|
||||
},
|
||||
]}
|
||||
/>
|
||||
|
||||
{/* iOS-Specific FAQs */}
|
||||
<IOSFAQs />
|
||||
{/* <section className="bg-card">
|
||||
<IOSTechnologies />
|
||||
</section> */}
|
||||
|
||||
Reference in New Issue
Block a user