diff --git a/src/app/page.tsx b/src/app/page.tsx index bda607e..9aab829 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -3,7 +3,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; import HeroCarouselLogo from "@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo"; -import FeatureCardSixteen from "@/components/sections/feature/FeatureCardSixteen"; +import FeatureCardTwentySeven from "@/components/sections/feature/FeatureCardTwentySeven"; import MediaAbout from "@/components/sections/about/MediaAbout"; import PricingCardTwo from "@/components/sections/pricing/PricingCardTwo"; import ContactSplit from "@/components/sections/contact/ContactSplit"; @@ -62,23 +62,40 @@ export default function LandingPage() {
-
diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx new file mode 100644 index 0000000..ac1fcc4 --- /dev/null +++ b/src/app/services/page.tsx @@ -0,0 +1,94 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; +import FeatureCardTwentySeven from "@/components/sections/feature/FeatureCardTwentySeven"; +import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal"; + +export default function ServicesPage() { + return ( + + + +
+ +
+ + +
+ ); +} \ No newline at end of file