From 6cd9939d5e25efa86e53926f4435da2b4cd18c4f Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 10 Jun 2026 07:42:48 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1e92680..d7279d1 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -10,8 +10,8 @@ import { getVisualEditScript } from "@/utils/visual-edit-script"; export const metadata: Metadata = { - title: 'Axion Studio - Design Agency', - description: 'Axion Studio crafts digital experiences for brands ready to dominate their category online. Explore our strategy-led creative work.', + title: 'Five Star Painting LTD - Professional Painting Services', + description: 'Five Star Painting LTD offers professional interior, exterior, and commercial painting services. Quality craftsmanship, exceptional results, and a commitment to customer satisfaction. Contact us for a free estimate.', openGraph: { "title": "Axion Studio - Design Agency", "description": "Axion Studio crafts digital experiences for brands ready to dominate their category online. Explore our strategy-led creative work.", -- 2.49.1 From 486a6b157aaa3dcaf4d960b01117c5cf151ecc0d Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 10 Jun 2026 07:42:48 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 186 +++++++++++++++++++++++++++-------------------- 1 file changed, 109 insertions(+), 77 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index e4d82e0..ebba471 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,7 +9,9 @@ import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi'; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen'; -import { Award, Sparkles } from "lucide-react"; +import FeatureCardSix from '@/components/sections/feature/FeatureCardSix'; +import ContactSplit from '@/components/sections/contact/ContactSplit'; +import { Award, Sparkles, Paintbrush, Home, Building2, Workflow } from "lucide-react"; export default function LandingPage() { return ( @@ -30,15 +32,19 @@ export default function LandingPage() { @@ -46,89 +52,97 @@ export default function LandingPage() { -
+
+ +
+ +
-
+
@@ -137,43 +151,35 @@ export default function LandingPage() { animationType="slide-up" textboxLayout="default" useInvertedBackground={false} - title="What our partners say" - description="Hear directly from the clients who've trusted us to bring their vision to life." + title="Hear From Our Happy Clients" + description="Our clients consistently rave about our professionalism, quality, and attention to detail." testimonials={[ { - id: "testimonial-1", name: "Sarah Chen", role: "Marketing Director", company: "Innovate Corp", rating: 5, - imageSrc: "http://img.b2bpic.net/free-vector/various-types-code-logo-flat-design_23-2148821508.jpg", imageAlt: "Avatar of Sarah Chen" + id: "testimonial-1", name: "John D.", role: "Homeowner", company: "Calgary", rating: 5, + imageSrc: "http://img.b2bpic.net/free-photo/portrait-mature-man-isolated-white_23-2148768798.jpg", imageAlt: "Avatar of John D." }, { - id: "testimonial-2", name: "Michael Wong", role: "CEO", company: "FutureTech Solutions", rating: 5, - imageSrc: "http://img.b2bpic.net/free-vector/designer-elements-background_1172-580.jpg", imageAlt: "Avatar of Michael Wong" + id: "testimonial-2", name: "Sarah P.", role: "Business Owner", company: "Calgary", rating: 5, + imageSrc: "http://img.b2bpic.net/free-photo/pretty-caucasian-businesswoman-sitting-desk-with-crossed-hands-isolated-white-background_1418-2041.jpg", imageAlt: "Avatar of Sarah P." }, { - id: "testimonial-3", name: "Emily Rodriguez", role: "Brand Manager", company: "Global Brands Inc.", rating: 4, - imageSrc: "http://img.b2bpic.net/free-vector/graphic-designer-workplace_23-2147548083.jpg", imageAlt: "Avatar of Emily Rodriguez" + id: "testimonial-3", name: "Emily R.", role: "Property Manager", company: "Calgary", rating: 4, + imageSrc: "http://img.b2bpic.net/free-photo/young-african-american-man-isolated-yellow-wall_23-2148704206.jpg", imageAlt: "Avatar of Emily R." }, { - id: "testimonial-4", name: "David Lee", role: "Founder", company: "Velocity Ventures", rating: 5, - imageSrc: "http://img.b2bpic.net/free-vector/graphic-designer-infographic-template_1172-39.jpg", imageAlt: "Avatar of David Lee" - }, - { - id: "testimonial-5", name: "Jessica Kim", role: "Product Lead", company: "Apex Digital", rating: 4, - imageSrc: "http://img.b2bpic.net/free-photo/photo-metal-texture-pattern_58702-13675.jpg", imageAlt: "Avatar of Jessica Kim" - }, - { - id: "testimonial-6", name: "Robert Johnson", role: "CTO", company: "Streamline SaaS", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/3d-rendering-black-white-background_52683-118916.jpg", imageAlt: "Avatar of Robert Johnson" + id: "testimonial-4", name: "David L.", role: "Condo Owner", company: "Calgary", rating: 5, + imageSrc: "http://img.b2bpic.net/free-photo/young-adult-businessman-sitting-desk_1098-13768.jpg", imageAlt: "Avatar of David L." } ]} kpiItems={[ { - value: "98%", label: "Client Retention" + value: "99%", label: "Satisfaction Rate" }, { - value: "250+", label: "Projects Launched" + value: "15+", label: "Years of Service" }, { - value: "4.9/5", label: "Average Rating" + value: "A+", label: "BBB Rating" } ]} /> @@ -183,34 +189,60 @@ export default function LandingPage() {
+
+ +
+ ); -} +} \ No newline at end of file -- 2.49.1