diff --git a/src/app/page.tsx b/src/app/page.tsx index 5fb98a1..c38f2c7 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,16 +2,16 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactCTA from '@/components/sections/contact/ContactCTA'; +import ContactCenter from '@/components/sections/contact/ContactCenter'; import FeatureCardTwentyNine from '@/components/sections/feature/featureCardTwentyNine/FeatureCardTwentyNine'; -import FooterSimple from '@/components/sections/footer/FooterSimple'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTestimonial'; import MediaAbout from '@/components/sections/about/MediaAbout'; import MetricCardOne from '@/components/sections/metrics/MetricCardOne'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; import TeamCardFive from '@/components/sections/team/TeamCardFive'; -import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen'; +import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive'; import { Award, CheckCircle, Shield } from "lucide-react"; export default function LandingPage() { @@ -32,22 +32,10 @@ export default function LandingPage() { @@ -177,27 +75,9 @@ export default function LandingPage() { gridVariant="three-columns-all-equal-width" useInvertedBackground={true} features={[ - { - title: "Responsive Web Design", - description: "Beautiful sites that look stunning on any screen.", - imageSrc: "http://img.b2bpic.net/free-photo/user-profile-interface-sign-symbol-icon-3d-rendering_56104-1956.jpg", - titleImageSrc: "http://img.b2bpic.net/free-photo/modern-stationary-collection-arrangement_23-2149309627.jpg", - buttonText: "View Details", - }, - { - title: "Digital Strategy", - description: "Data-driven roadmaps to maximize your online presence.", - imageSrc: "http://img.b2bpic.net/free-photo/abstract-background-connecting-lines-dots_1048-7940.jpg", - titleImageSrc: "http://img.b2bpic.net/free-photo/business-network-background-connecting-dots-technology-design_53876-160270.jpg", - buttonText: "View Details", - }, - { - title: "UI/UX Research", - description: "Understanding your users to deliver superior interfaces.", - imageSrc: "http://img.b2bpic.net/free-photo/digital-assets-business-management-system-concept_53876-121226.jpg", - titleImageSrc: "http://img.b2bpic.net/free-photo/female-web-designer-taking-notes-office_23-2149749918.jpg", - buttonText: "View Details", - }, + { title: "Responsive Web Design", description: "Beautiful sites that look stunning on any screen.", imageSrc: "http://img.b2bpic.net/free-photo/user-profile-interface-sign-symbol-icon-3d-rendering_56104-1956.jpg", titleImageSrc: "http://img.b2bpic.net/free-photo/modern-stationary-collection-arrangement_23-2149309627.jpg", buttonText: "View Details" }, + { title: "Digital Strategy", description: "Data-driven roadmaps to maximize your online presence.", imageSrc: "http://img.b2bpic.net/free-photo/abstract-background-connecting-lines-dots_1048-7940.jpg", titleImageSrc: "http://img.b2bpic.net/free-photo/business-network-background-connecting-dots-technology-design_53876-160270.jpg", buttonText: "View Details" }, + { title: "UI/UX Research", description: "Understanding your users to deliver superior interfaces.", imageSrc: "http://img.b2bpic.net/free-photo/digital-assets-business-management-system-concept_53876-121226.jpg", titleImageSrc: "http://img.b2bpic.net/free-photo/female-web-designer-taking-notes-office_23-2149749918.jpg", buttonText: "View Details" }, ]} title="Comprehensive Digital Services" description="Expert solutions designed for the modern web." @@ -211,27 +91,9 @@ export default function LandingPage() { gridVariant="uniform-all-items-equal" useInvertedBackground={false} metrics={[ - { - id: "m1", - value: "150+", - title: "Projects Completed", - description: "Across diverse industries.", - icon: CheckCircle, - }, - { - id: "m2", - value: "98%", - title: "Client Satisfaction", - description: "Highly rated service quality.", - icon: Award, - }, - { - id: "m3", - value: "40+", - title: "Global Brands", - description: "Trusted by market leaders.", - icon: Shield, - }, + { id: "m1", value: "150+", title: "Projects Completed", description: "Across diverse industries.", icon: CheckCircle }, + { id: "m2", value: "98%", title: "Client Satisfaction", description: "Highly rated service quality.", icon: Award }, + { id: "m3", value: "40+", title: "Global Brands", description: "Trusted by market leaders.", icon: Shield }, ]} title="Impact in Numbers" description="Our results speak for our dedication to excellence." @@ -244,24 +106,8 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={true} team={[ - { - id: "t1", - name: "Alex Rivers", - role: "Lead Designer", - imageSrc: "http://img.b2bpic.net/free-photo/front-view-woman-doing-creative-journaling_23-2150561848.jpg", - }, - { - id: "t2", - name: "Maya Chen", - role: "UX Architect", - imageSrc: "http://img.b2bpic.net/free-photo/happy-darkskinned-curly-brunette-woman-oversized-white-stylish-jacket-leans-table-with-clothing-samples-patterns-it-smiles_197531-27834.jpg", - }, - { - id: "t3", - name: "Jordan P.", - role: "Senior Developer", - imageSrc: "http://img.b2bpic.net/free-photo/middle-eastern-businessman-does-daily-tasks-corporate-job_482257-116713.jpg", - }, + { id: "t1", name: "Alex Rivers", role: "Lead Designer", imageSrc: "http://img.b2bpic.net/free-photo/front-view-woman-doing-creative-journaling_23-2150561848.jpg" }, + { id: "t2", name: "Maya Chen", role: "UX Architect", imageSrc: "http://img.b2bpic.net/free-photo/happy-darkskinned-curly-brunette-woman-oversized-white-stylish-jacket-leans-table-with-clothing-samples-patterns-it-smiles_197531-27834.jpg" }, ]} title="Meet Our Visionaries" description="The creative force driving Dino Digital Network." @@ -272,107 +118,42 @@ export default function LandingPage() {
-
-
diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index d673939..b131aca 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #ffffff; - --card: #f8f9fa; - --foreground: #000000; + --background: #000000; + --card: #0c0c0c; + --foreground: #ffffff; --primary-cta: #00ced1; --primary-cta-text: #ffffff; - --secondary-cta: #000000; + --secondary-cta: #111111; --secondary-cta-text: #ffffff; --accent: #00ced1; - --background-accent: #e0ffff; + --background-accent: #00ced1; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);