diff --git a/src/components/sections/ServicesSection.tsx b/src/components/sections/ServicesSection.tsx
index 248d1ee..8fa33ec 100644
--- a/src/components/sections/ServicesSection.tsx
+++ b/src/components/sections/ServicesSection.tsx
@@ -92,9 +92,10 @@ export default function ServicesSection() {
onMouseLeave={() => setIsHovering(false)}
>
{services.map((service, index) => (
-
{/* Service Number */}
@@ -122,7 +123,7 @@ export default function ServicesSection() {
{service.name}
-
+
))}
diff --git a/src/pages/index.astro b/src/pages/index.astro
index 5322c86..6c1ebf3 100644
--- a/src/pages/index.astro
+++ b/src/pages/index.astro
@@ -1,17 +1,17 @@
---
-import Layout from '../layouts/Layout.astro';
-import LoadingScreen from '../components/ui/LoadingScreen';
-import HeroSection from '../components/sections/HeroSection';
-import ApproachSection from '../components/sections/ApproachSection';
-import ServicesSection from '../components/sections/ServicesSection';
-import InsightsSection from '../components/sections/InsightsSection';
-import BusinessStagesSection from '../components/sections/BusinessStagesSection';
-import StrategySection from '../components/sections/StrategySection';
-import BrandAwarenessSection from '../components/sections/BrandAwarenessSection';
-import PerformanceMarketingSection from '../components/sections/PerformanceMarketingSection';
-import OfferSection from '../components/sections/OfferSection';
-import ContactForm from '../components/forms/ContactForm';
-import FooterSection from '../components/sections/FooterSection';
+import Layout from "../layouts/Layout.astro";
+import LoadingScreen from "../components/ui/LoadingScreen";
+import HeroSection from "../components/sections/HeroSection";
+import ApproachSection from "../components/sections/ApproachSection";
+import ServicesSection from "../components/sections/ServicesSection";
+import InsightsSection from "../components/sections/InsightsSection";
+import BusinessStagesSection from "../components/sections/BusinessStagesSection";
+import StrategySection from "../components/sections/StrategySection";
+import BrandAwarenessSection from "../components/sections/BrandAwarenessSection";
+import PerformanceMarketingSection from "../components/sections/PerformanceMarketingSection";
+import OfferSection from "../components/sections/OfferSection";
+import ContactForm from "../components/forms/ContactForm";
+import FooterSection from "../components/sections/FooterSection";
---