diff --git a/src/app/page.tsx b/src/app/page.tsx index f316867..06483e2 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,7 +9,7 @@ import FeatureCardTwentySeven from '@/components/sections/feature/FeatureCardTwe import MetricCardOne from '@/components/sections/metrics/MetricCardOne'; import ContactText from '@/components/sections/contact/ContactText'; import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; -import { ShieldCheck, Heart, Users, BrainCircuit, Target, BookOpen, Clock } from "lucide-react"; +import { ShieldCheck, Heart, Users, BookOpen } from "lucide-react"; export default function LandingPage() { return ( @@ -30,10 +30,7 @@ export default function LandingPage() { -
- -
-
-
- -
-
); -} +} \ No newline at end of file diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx new file mode 100644 index 0000000..742bfa3 --- /dev/null +++ b/src/app/services/page.tsx @@ -0,0 +1,116 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import HeroOverlayTestimonial from '@/components/sections/hero/HeroOverlayTestimonial'; +import SplitAbout from '@/components/sections/about/SplitAbout'; +import FeatureCardTwentySeven from '@/components/sections/feature/FeatureCardTwentySeven'; +import MetricCardOne from '@/components/sections/metrics/MetricCardOne'; +import ContactText from '@/components/sections/contact/ContactText'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; +import { Heart, BrainCircuit, Users, BookOpen } from "lucide-react"; + +export default function ServicesPage() { + return ( + + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+
+ ); +} \ No newline at end of file