From f28713eaa9eb4f99eea8a5afbf28c94eda3fde0b Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Mon, 22 Jun 2026 16:52:17 +0000 Subject: [PATCH 1/2] Bob AI: fix build error in src/pages/HomePage.tsx --- src/pages/HomePage.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index f8fd674..06c5118 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -5,7 +5,7 @@ import FeaturesBento from '@/components/sections/features/FeaturesBento'; import HeroBrand from '@/components/sections/hero/HeroBrand'; import MetricsSimpleCards from '@/components/sections/metrics/MetricsSimpleCards'; import TestimonialColumnMarqueeCards from '@/components/sections/testimonial/TestimonialColumnMarqueeCards'; -import { Building, Star, User, Users } from "lucide-react"; +import { Building, DraftingCompass, Star, User, Users } from "lucide-react"; import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; export default function HomePage() { -- 2.49.1 From d277cd9375a5bf77e2f0d3392dcbfb542076a93a Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 22 Jun 2026 16:52:23 +0000 Subject: [PATCH 2/2] Update src/pages/HomePage.tsx --- src/pages/HomePage.tsx | 291 ++++++++++++++--------------------------- 1 file changed, 97 insertions(+), 194 deletions(-) diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index 06c5118..08898a7 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -5,218 +5,121 @@ import FeaturesBento from '@/components/sections/features/FeaturesBento'; import HeroBrand from '@/components/sections/hero/HeroBrand'; import MetricsSimpleCards from '@/components/sections/metrics/MetricsSimpleCards'; import TestimonialColumnMarqueeCards from '@/components/sections/testimonial/TestimonialColumnMarqueeCards'; -import { Building, DraftingCompass, Star, User, Users } from "lucide-react"; +import { Building, Star, User, Users, DraftingCompass } from "lucide-react"; import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; export default function HomePage() { return ( <> -
- +
+ - -
+ brand="Sewahia Celampung" + description="Providing premier integrated infrastructure and construction solutions across Lampung." + primaryButton={{ text: "Our Services", href: "#features" }} + secondaryButton={{ text: "Learn More", href: "#about" }} + imageSrc="http://img.b2bpic.net/free-photo/man-woman-checking-construction-plan_23-2148252080.jpg" + /> +
+
-
- +
+ - -
+ title="Built on Excellence and Integrity" + primaryButton={{ text: "Contact Us", href: "#contact" }} + /> +
+
-
- +
+ - -
+ tag="Expertise" + title="Comprehensive Solutions" + description="We specialize in delivering robust infrastructure tailored to your unique requirements." + features={[ + { + title: "Planning", description: "Strategic development and project design.", bentoComponent: "info-card-marquee", infoCards: [ + { icon: "DraftingCompass", label: "Accuracy", value: "99%" }, + { icon: "Users", label: "Expert Team", value: "50+" }, + { icon: "Building", label: "Projects", value: "100+" }, + ], + }, + { + title: "Construction", description: "High-quality engineering execution.", bentoComponent: "media-stack", mediaItems: [ + { imageSrc: "http://img.b2bpic.net/free-photo/man-woman-checking-construction-plan_23-2148252080.jpg" }, + { imageSrc: "http://img.b2bpic.net/free-photo/professional-architects-looking-plan_23-2147702511.jpg" }, + { imageSrc: "http://img.b2bpic.net/free-photo/businessmen-hands-white-table-with-documents-drafts_176420-344.jpg" }, + ], + }, + { + title: "Consulting", description: "Professional guidance at every phase.", bentoComponent: "chat-marquee", aiIcon: "Star", userIcon: "User", exchanges: [ + { userMessage: "Need project advice?", aiResponse: "Our experts are ready to assist you today." }, + ], + placeholder: "Get expert consultation..."}, + ]} + /> +
+
-
- +
+ - -
+ tag="Performance" + title="Why Choose Us" + description="Data-driven results for your projects." + metrics={[ + { value: "15+", description: "Years of Experience" }, + { value: "500+", description: "Satisfied Clients" }, + { value: "98%", description: "Success Rate" }, + ]} + /> +
+
-
- +
+ - -
+ tag="Support" + title="Frequently Asked Questions" + description="Everything you need to know about our services." + items={[ + { question: "What areas do you serve?", answer: "We serve the entirety of Lampung province." }, + { question: "How can I request a quote?", answer: "Simply fill out our contact form and our team will get in touch." }, + { question: "Do you handle small projects?", answer: "We manage projects of all scales with equal commitment." }, + ]} + /> +
+
-
- +
+ - -
+ tag="Proof" + title="What Clients Say" + description="Trust earned through consistent performance." + testimonials={[ + { name: "Budi Santoso", role: "CEO", quote: "Exceptional service and timely project delivery.", imageSrc: "http://img.b2bpic.net/free-photo/middle-age-latin-businesswoman-smiling-happy-standing-with-arms-crossed-gesture-city_839833-17431.jpg" }, + { name: "Siti Aminah", role: "Director", quote: "Professional team with great communication.", imageSrc: "http://img.b2bpic.net/free-photo/young-successful-businessman-smiling-posing-with-crossed-arms-office_176420-913.jpg" }, + { name: "Andi Wijaya", role: "Project Manager", quote: "The best infrastructure partner in Lampung.", imageSrc: "http://img.b2bpic.net/free-photo/aged-middle-expression-calling-business_1262-2838.jpg" }, + { name: "Dewi Sartika", role: "Developer", quote: "High commitment and attention to detail.", imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-working-from-his-office-concept-hard-work_181624-33428.jpg" }, + { name: "Rahmat Hidayat", role: "Consultant", quote: "Reliable experts who exceed expectations.", imageSrc: "http://img.b2bpic.net/free-photo/businessman-smiling-camera_107420-95907.jpg" }, + ]} + /> +
+
-
- +
+ - -
+ tag="Get Started" + text="Ready to bring your project to life?" + primaryButton={{ text: "Contact Us Now", href: "mailto:info@sewahiacelampung.com" }} + secondaryButton={{ text: "View All Services", href: "#features" }} + /> +
+
); } -- 2.49.1