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