9 Commits

Author SHA1 Message Date
05bae43f62 Update src/app/page.tsx 2025-12-28 20:25:41 +00:00
41ab83d78d Update src/app/page.tsx 2025-12-28 20:19:41 +00:00
7e76a3c64e Update src/app/page.tsx 2025-12-28 20:15:05 +00:00
d726f49641 Update src/app/page.tsx 2025-12-28 16:59:00 +00:00
5fbc6b5ef9 Update src/app/page.tsx 2025-12-28 16:56:27 +00:00
19c28b2f06 Update src/app/page.tsx 2025-12-28 16:50:15 +00:00
ae8df3a060 Update src/app/layout.tsx 2025-12-28 16:50:15 +00:00
c6ebe8f124 Update src/app/page.tsx 2025-12-28 16:46:14 +00:00
7ed5748480 Update src/app/page.tsx 2025-12-28 16:44:20 +00:00
2 changed files with 77 additions and 28 deletions

View File

@@ -1275,4 +1275,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -6,9 +6,10 @@ import HeroBillboard from '@/components/sections/hero/HeroBillboard';
import MediaSplitTabsAbout from '@/components/sections/about/MediaSplitTabsAbout';
import FeatureCardEight from '@/components/sections/feature/FeatureCardEight';
import TeamCardThree from '@/components/sections/team/TeamCardThree';
import TestimonialCardEight from '@/components/sections/testimonial/TestimonialCardEight';
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
import MetricCardFive from '@/components/sections/metrics/MetricCardFive';
import ContactText from '@/components/sections/contact/ContactText';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import FooterCard from '@/components/sections/footer/FooterCard';
import { Linkedin } from "lucide-react";
export default function LandingPage() {
@@ -132,10 +133,10 @@ export default function LandingPage() {
members={[
{
id: "1",
name: "Robert Sullivan",
name: "Roberto Sullivano",
role: "Managing Partner & Senior Counsel",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766938360058-t14h8v9a.jpg",
imageAlt: "Robert Sullivan, Managing Partner",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766941134189-gkd1fcuv.jpg",
imageAlt: "Roberto Sullivano, Managing Partner",
socialLinks: [
{ icon: Linkedin, url: "https://linkedin.com" }
]
@@ -169,69 +170,84 @@ export default function LandingPage() {
socialLinks: [
{ icon: Linkedin, url: "https://linkedin.com" }
]
},
{
id: "5",
name: "Emily Rodriguez",
role: "Associate, Corporate Law",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766941134189-gkd1fcuv.jpg",
imageAlt: "Emily Rodriguez, Associate Attorney",
socialLinks: [
{ icon: Linkedin, url: "https://linkedin.com" }
]
},
{
id: "6",
name: "James Patterson",
role: "Associate, Litigation",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766938361855-kj239hd9.jpg",
imageAlt: "James Patterson, Associate Attorney",
socialLinks: [
{ icon: Linkedin, url: "https://linkedin.com" }
]
}
]}
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardEight
title="Client Success Stories"
<TestimonialCardSix
title="What our Partner's Say"
description="Trusted by leading businesses and individuals throughout New York"
textboxLayout="default"
useInvertedBackground="noInvert"
animationType="slide-up"
testimonials={[
{
id: "1",
name: "James Patterson",
role: "CEO",
company: "TechVentures Inc.",
rating: 5,
handle: "CEO, TechVentures Inc.",
testimonial: "Sullivan & Associates transformed our corporate strategy. Their expertise in complex transactions is unmatched.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766938362756-wc4s3kcx.jpg",
imageAlt: "James Patterson testimonial"
},
{
id: "2",
name: "Sarah Klein",
role: "Founder",
company: "Klein & Associates Consulting",
rating: 5,
handle: "Founder, Klein & Associates Consulting",
testimonial: "The litigation team delivered exceptional results in our most critical case. Highly recommended for any serious legal matter.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766140101670-ttp7xdlv.jpg",
imageAlt: "Sarah Klein testimonial"
},
{
id: "3",
name: "Michael Torres",
role: "General Counsel",
company: "Metropolitan Manufacturing",
rating: 5,
handle: "General Counsel, Metropolitan Manufacturing",
testimonial: "Working with Sullivan & Associates has streamlined our legal operations. Their strategic guidance is invaluable.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766938357059-679lptt9.jpg",
imageAlt: "Michael Torres testimonial"
},
{
id: "4",
name: "Linda Brooks",
role: "Business Owner",
company: "Brooks Real Estate Group",
rating: 5,
handle: "Business Owner, Brooks Real Estate Group",
testimonial: "Exceptional negotiation skills and attention to detail. They protected our interests every step of the way.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766140152452-p4x3ah4p.jpg",
imageAlt: "Linda Brooks testimonial"
},
{
id: "5",
name: "Christopher Lee",
role: "CFO",
company: "Financial Solutions Corp",
rating: 5,
handle: "CFO, Financial Solutions Corp",
testimonial: "Their corporate law expertise helped us navigate a major acquisition seamlessly. True professionals.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766140103339-f3be0gdh.jpg",
imageAlt: "Christopher Lee testimonial"
},
{
id: "6",
name: "Amanda Johnson",
role: "Executive Director",
company: "Community Development Partners",
rating: 5,
handle: "Executive Director, Community Development Partners",
testimonial: "Responsive, knowledgeable, and deeply committed to our success. A truly outstanding legal partner.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766320184384-whnns6as.jpg",
imageAlt: "Amanda Johnson testimonial"
}
@@ -239,6 +255,39 @@ export default function LandingPage() {
/>
</div>
<div id="metrics" data-section="metrics">
<MetricCardFive
title="Our Impact in Numbers"
description="Delivering measurable results for our clients"
tag="Key Metrics"
textboxLayout="default"
useInvertedBackground="noInvert"
animationType="slide-up"
metrics={[
{
id: "1",
value: "25+",
description: "Years of combined legal expertise and industry leadership"
},
{
id: "2",
value: "500+",
description: "Successful cases resolved with favorable outcomes"
},
{
id: "3",
value: "98%",
description: "Client satisfaction rate and repeat business rate"
},
{
id: "4",
value: "$2B+",
description: "Total value of transactions and settlements handled"
}
]}
/>
</div>
<div id="contact" data-section="contact">
<ContactText
text="Ready to move forward with your legal matter? Contact our team today for a confidential consultation."
@@ -252,10 +301,10 @@ export default function LandingPage() {
</div>
<div id="footer" data-section="footer">
<FooterLogoReveal
<FooterCard
logoText="Sullivan & Associates"
/>
</div>
</ThemeProvider>
);
}
}