From 242e3429c0df1ad95e40df4b1852a4b47d0e6fa5 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 8 May 2026 23:12:21 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 209 +++++++---------------------------------------- 1 file changed, 31 insertions(+), 178 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index c364a7e..d63728e 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,6 +2,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; +import { Shield, FileText, CheckCircle, Zap } from "lucide-react"; import ContactCenter from '@/components/sections/contact/ContactCenter'; import FaqBase from '@/components/sections/faq/FaqBase'; import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix'; @@ -31,48 +32,23 @@ export default function LandingPage() {
@@ -209,46 +117,11 @@ export default function LandingPage() { textboxLayout="split" useInvertedBackground={true} testimonials={[ - { - id: "1", - name: "Seth Barns", - handle: "Local Guide", - testimonial: "First class operation run by highly professional people. Easy access and professional staff.", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/close-up-businessman-with-tie_1098-2867.jpg", - }, - { - id: "2", - name: "James Murphy", - handle: "Commercial Developer", - testimonial: "First class operation run by highly professional people, reliable and efficient.", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/low-angle-smiley-lawyer-with-crossed-arms_23-2148230781.jpg", - }, - { - id: "3", - name: "Lisa Thompson", - handle: "Property Owner", - testimonial: "Exceptional attention to detail and professional integrity throughout the build.", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/smiling-successful-middle-aged-business-leader_1262-5690.jpg", - }, - { - id: "4", - name: "Craig Nadeau", - handle: "Facility Manager", - testimonial: "Their security protocols and documentation are simply best in class.", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/front-view-man-holding-schematics_23-2148269799.jpg", - }, - { - id: "5", - name: "Glen L", - handle: "Real Estate Team", - testimonial: "Highly recommended for institutional-grade projects. Consistent and professional delivery.", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/low-angle-male-engineer_23-2148480396.jpg", - }, + { id: "1", name: "Seth Barns", handle: "Local Guide", testimonial: "First class operation run by highly professional people. Easy access and professional staff.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/close-up-businessman-with-tie_1098-2867.jpg" }, + { id: "2", name: "James Murphy", handle: "Commercial Developer", testimonial: "First class operation run by highly professional people, reliable and efficient.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/low-angle-smiley-lawyer-with-crossed-arms_23-2148230781.jpg" }, + { id: "3", name: "Lisa Thompson", handle: "Property Owner", testimonial: "Exceptional attention to detail and professional integrity throughout the build.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/smiling-successful-middle-aged-business-leader_1262-5690.jpg" }, + { id: "4", name: "Craig Nadeau", handle: "Facility Manager", testimonial: "Their security protocols and documentation are simply best in class.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/front-view-man-holding-schematics_23-2148269799.jpg" }, + { id: "5", name: "Glen L", handle: "Real Estate Team", testimonial: "Highly recommended for institutional-grade projects. Consistent and professional delivery.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/low-angle-male-engineer_23-2148480396.jpg" } ]} showRating={true} title="Client Perspectives" @@ -261,21 +134,9 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={false} faqs={[ - { - id: "q1", - title: "What are your site security protocols?", - content: "We maintain strict access control, credentialing, and site monitoring protocols tailored to high-security commercial environments.", - }, - { - id: "q2", - title: "How do you manage project timelines?", - content: "We use detailed scheduling and real-time reporting to provide full visibility and proactive risk management for stakeholders.", - }, - { - id: "q3", - title: "Are you licensed and insured?", - content: "Yes, we carry full insurance and maintain all institutional certifications required for high-stakes commercial development.", - }, + { id: "q1", title: "What are your site security protocols?", content: "We maintain strict access control, credentialing, and site monitoring protocols tailored to high-security commercial environments." }, + { id: "q2", title: "How do you manage project timelines?", content: "We use detailed scheduling and real-time reporting to provide full visibility and proactive risk management for stakeholders." }, + { id: "q3", title: "Are you licensed and insured?", content: "Yes, we carry full insurance and maintain all institutional certifications required for high-stakes commercial development." } ]} title="Operational Standards" description="Answering your questions about our construction management processes." @@ -286,9 +147,7 @@ export default function LandingPage() {
-- 2.49.1