chnages usa uk ios

This commit is contained in:
2026-04-10 12:01:47 +05:30
parent 14af1fda32
commit cf4ff78e12
4 changed files with 307 additions and 4 deletions

View File

@@ -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";
@@ -1032,6 +1038,99 @@ const IOSTechnologies = () => {
);
};
// iOS-Specific FAQs
const IOSFAQs = () => {
const faqs = [
{
question: "What is the Expected Timeline to Develop My iOS Application?",
answer:
"The timeline to develop your iOS application depends on the features and complexity of your proposed iOS application. When simple apps can be built in 2-4 weeks, complex, enterprise apps can take up to 2 to 4 months.",
},
{
question:
"Will I Own Source Code and Intellectual Property While Delivering the App?",
answer:
"Yes, you will get the complete ownership of the application. We will provide the source code, design files, and the Intellectual Property (IP rights) to you once the final payment is made. The code repository access will be transferred to you to give you complete ownership.",
},
{
question:
"Should I Go Native or Cross-Platform (Flutter / React Native)?",
answer:
"Cross-platform development can save a significant amount of cost, but native development offers the best IOS experience. However, if you are targeting iPhone users, Swift is the best option considering the performance.",
},
{
question: "Will I be Involved During the Design and Development Phase?",
answer:
"From the initial discussion phase to the launching phase, you will receive continuous updates, demos, and prototypes, which you will need to approve to understand UX and visual designs (UI).",
},
{
question:
"Do You Handle the App Submission Process to the Apple App Store?",
answer:
"Yes, we handle creating app metadata and submitting it to the Apple App Store Connect, and we also manage any rejection.",
},
{
question: "How Do You Ensure High-Quality Testing before Launching?",
answer:
"We perform functional, usability, performance, and security testing, preferably using Apples TestFlight for beta testing. We ensure that the iOS app has cross-device functionality and all the features of the iOS app.",
},
{
question:
"Which Programming Language Is Better to Choose — Swift or Objective-C?",
answer:
"Our expert iOS app developers in India are skilled in working with both Swift and Objective-C. However, Swift is a more contemporary, fast, and preferred language for developing native iOS. On the other hand, Objective-C is ideal for iOS development, mainly due to existing legacy codebases and its dynamic runtime capabilities.",
},
];
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 IOSAppDevelopmentIndia = () => {
const navigate = useNavigate();
@@ -1090,9 +1189,8 @@ export const IOSAppDevelopmentIndia = () => {
]}
/>
{/* <section className="bg-card">
<IOSTechnologies />
</section> */}
{/* iOS-Specific FAQs */}
<IOSFAQs />
{/* CTA Section */}
<section className="py-32">