ios page fix

This commit is contained in:
priyanshuvish
2025-07-11 18:52:07 +05:30
parent 8a5bb95a0e
commit 5f1b4fb3bd

View File

@@ -25,7 +25,7 @@ import {
} from "lucide-react"; } from "lucide-react";
// iOS App Development Hero Section // iOS App Development Hero Section
const iOSHeroWithCTA = () => { const IOSHeroWithCTA = () => {
return ( return (
<section className="relative py-20 overflow-hidden bg-black"> <section className="relative py-20 overflow-hidden bg-black">
<div className="container mx-auto px-6 lg:px-8"> <div className="container mx-auto px-6 lg:px-8">
@@ -154,7 +154,7 @@ const iOSHeroWithCTA = () => {
}; };
// Key Benefits of iOS Development // Key Benefits of iOS Development
const iOSBenefits = () => { const IOSBenefits = () => {
const benefits = [ const benefits = [
{ {
icon: Apple, icon: Apple,
@@ -278,7 +278,7 @@ const iOSBenefits = () => {
}; };
// iOS Technologies & Frameworks // iOS Technologies & Frameworks
const iOSTechnologies = () => { const IOSTechnologies = () => {
const technologies = [ const technologies = [
{ {
title: "Swift Programming", title: "Swift Programming",
@@ -388,26 +388,22 @@ export const IOSAppDevelopment = () => {
return ( return (
<div className="dark min-h-screen"> <div className="dark min-h-screen">
<Navigation /> <Navigation />
{/* Hero Section */}
<section className="bg-black"> <section className="bg-black">
{/* <iOSHeroWithCTA /> */} <IOSHeroWithCTA />
</section> </section>
{/* Benefits */}
<section className="bg-background"> <section className="bg-background">
{/* <iOSBenefits /> */} <IOSBenefits />
</section> </section>
{/* Technologies */}
<section className="bg-card"> <section className="bg-card">
{/* <iOSTechnologies /> */} <IOSTechnologies />
</section> </section>
{/* Footer */}
<section className="bg-background"> <section className="bg-background">
<Footer /> <Footer />
</section> </section>
</div> </div>
); );
}; };