diff --git a/src/app/page.tsx b/src/app/page.tsx index 1b1b464..cee93cc 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,14 +2,15 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactCenter from '@/components/sections/contact/ContactCenter'; +import ContactText from '@/components/sections/contact/ContactText'; import FaqDouble from '@/components/sections/faq/FaqDouble'; import FeatureCardTwentyFour from '@/components/sections/feature/FeatureCardTwentyFour'; -import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; -import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboardRotatedCarousel'; +import FooterSimple from '@/components/sections/footer/FooterSimple'; +import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll'; import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve'; +import CardStack from '@/components/cardStack/CardStack'; export default function LandingPage() { return ( @@ -30,6 +31,7 @@ export default function LandingPage() {
-
@@ -61,39 +55,37 @@ export default function LandingPage() { textboxLayout="split" useInvertedBackground={true} features={[ - { - id: "f1", title: "Web Development", author: "Custom Code", description: "High-performance web applications using modern frameworks.", tags: ["React", "Next.js"], - imageSrc: "http://img.b2bpic.net/free-photo/caucasian-software-developer-signaling-screen-data-breach-deactivated-security-system-tech-engineer-observing-multiple-system-security-breaches-caused-by-overloaded-storage-servers_482257-40529.jpg" - }, - { - id: "f2", title: "SEO Optimization", author: "Search Strategy", description: "Data-driven SEO techniques that dominate search results.", tags: ["SEO", "Analytics"], - imageSrc: "http://img.b2bpic.net/free-photo/close-up-office-supplies_1098-3510.jpg" - }, - { - id: "f3", title: "Server Building", author: "Infrastructure", description: "Reliable, secure, and scalable server architecture.", tags: ["Cloud", "DevOps"], - imageSrc: "http://img.b2bpic.net/free-photo/man-coding-data-center-testing-failover-scenarios-using-notebook_482257-119863.jpg" - } + { id: "f1", title: "Web Development", author: "Custom Code", description: "High-performance web applications using modern frameworks.", tags: ["React", "Next.js"], imageSrc: "http://img.b2bpic.net/free-photo/caucasian-software-developer-signaling-screen-data-breach-deactivated-security-system-tech-engineer-observing-multiple-system-security-breaches-caused-by-overloaded-storage-servers_482257-40529.jpg" }, + { id: "f2", title: "SEO Optimization", author: "Search Strategy", description: "Data-driven SEO techniques that dominate search results.", tags: ["SEO", "Analytics"], imageSrc: "http://img.b2bpic.net/free-photo/close-up-office-supplies_1098-3510.jpg" }, + { id: "f3", title: "Server Building", author: "Infrastructure", description: "Reliable, secure, and scalable server architecture.", tags: ["Cloud", "DevOps"], imageSrc: "http://img.b2bpic.net/free-photo/man-coding-data-center-testing-failover-scenarios-using-notebook_482257-119863.jpg" } ]} title="Comprehensive Digital Solutions" description="We specialize in end-to-end digital services tailored to scale your business." /> +
+ + {/* Placeholder content representing showcase items */} + +
+
-
); -} +} \ No newline at end of file