Compare commits
30 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 906c8eceb6 | |||
| b717b9ca4e | |||
| fa089dac81 | |||
| 828a7972ba | |||
| abdba2c968 | |||
| 05bae43f62 | |||
| 3e6569c36c | |||
| 41ab83d78d | |||
| d78296fb1c | |||
| 7e76a3c64e | |||
| beb8c8c53a | |||
| d726f49641 | |||
| 5157c543dc | |||
| 5fbc6b5ef9 | |||
| 9374e0e580 | |||
| 19c28b2f06 | |||
| ae8df3a060 | |||
| d55cfb0808 | |||
| c6ebe8f124 | |||
| a354058cc7 | |||
| 7ed5748480 | |||
| 02c0dc9c11 | |||
| f3a1bd56b3 | |||
| 5fa5421c02 | |||
| dd3aefb422 | |||
| 1369d3c323 | |||
| 095228a616 | |||
| 30917471d5 | |||
| 0b3c3f694d | |||
| b32667fe3c |
@@ -4,13 +4,13 @@
|
|||||||
/* Base units */
|
/* Base units */
|
||||||
/* --vw is set by ThemeProvider */
|
/* --vw is set by ThemeProvider */
|
||||||
|
|
||||||
--background: #f5faff;;
|
--background: #000000;;
|
||||||
--card: #f1f8ff;;
|
--card: #1a1a1a;;
|
||||||
--foreground: #001122;;
|
--foreground: #ffffff;;
|
||||||
--primary-cta: #15479c;;
|
--primary-cta: #1a1a1a;;
|
||||||
--secondary-cta: #ffffff;;
|
--secondary-cta: #ffffff;;
|
||||||
--accent: #a8cce8;;
|
--accent: #808080;;
|
||||||
--background-accent: #7ba3cf;;
|
--background-accent: #d3d3d3;;
|
||||||
|
|
||||||
/* text sizing - set by ThemeProvider */
|
/* text sizing - set by ThemeProvider */
|
||||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||||
@@ -495,7 +495,7 @@ html {
|
|||||||
body {
|
body {
|
||||||
background-color: var(--background);
|
background-color: var(--background);
|
||||||
color: var(--foreground);
|
color: var(--foreground);
|
||||||
font-family: var(--font-prata), sans-serif;
|
font-family: var(--font-playfair-display --font-roboto), sans-serif;
|
||||||
position: relative;
|
position: relative;
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
overscroll-behavior: none;
|
overscroll-behavior: none;
|
||||||
@@ -508,5 +508,5 @@ h3,
|
|||||||
h4,
|
h4,
|
||||||
h5,
|
h5,
|
||||||
h6 {
|
h6 {
|
||||||
font-family: var(--font-prata), sans-serif;
|
font-family: var(--font-playfair-display --font-roboto), sans-serif;
|
||||||
}
|
}
|
||||||
@@ -1,13 +1,18 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Prata } from "next/font/google";
|
import { Playfair_Display, Roboto } from "next/font/google";
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||||
import Tag from "@/tag/Tag";
|
import Tag from "@/tag/Tag";
|
||||||
|
|
||||||
const prata = Prata({
|
const playfairDisplay = Playfair_Display({
|
||||||
variable: "--font-prata",
|
variable: "--font-playfair-display",
|
||||||
subsets: ["latin"],
|
subsets: ["latin"],
|
||||||
weight: ["400"],
|
});
|
||||||
|
|
||||||
|
const roboto = Roboto({
|
||||||
|
variable: "--font-roboto",
|
||||||
|
subsets: ["latin"],
|
||||||
|
weight: ["100", "300", "400", "500", "700", "900"],
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
@@ -44,7 +49,7 @@ export default function RootLayout({
|
|||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body
|
<body
|
||||||
className={prata.variable}
|
className={`${playfairDisplay.variable} ${roboto.variable}`}
|
||||||
>
|
>
|
||||||
<Tag />
|
<Tag />
|
||||||
{children}
|
{children}
|
||||||
@@ -1270,4 +1275,4 @@ export default function RootLayout({
|
|||||||
</ServiceWrapper>
|
</ServiceWrapper>
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
105
src/app/page.tsx
105
src/app/page.tsx
@@ -6,9 +6,10 @@ import HeroBillboard from '@/components/sections/hero/HeroBillboard';
|
|||||||
import MediaSplitTabsAbout from '@/components/sections/about/MediaSplitTabsAbout';
|
import MediaSplitTabsAbout from '@/components/sections/about/MediaSplitTabsAbout';
|
||||||
import FeatureCardEight from '@/components/sections/feature/FeatureCardEight';
|
import FeatureCardEight from '@/components/sections/feature/FeatureCardEight';
|
||||||
import TeamCardThree from '@/components/sections/team/TeamCardThree';
|
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 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";
|
import { Linkedin } from "lucide-react";
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
@@ -19,7 +20,7 @@ export default function LandingPage() {
|
|||||||
borderRadius="pill"
|
borderRadius="pill"
|
||||||
contentWidth="mediumSmall"
|
contentWidth="mediumSmall"
|
||||||
sizing="medium"
|
sizing="medium"
|
||||||
background="noiseGradient"
|
background="none"
|
||||||
cardStyle="gradient-bordered"
|
cardStyle="gradient-bordered"
|
||||||
primaryButtonStyle="layered-depth"
|
primaryButtonStyle="layered-depth"
|
||||||
secondaryButtonStyle="glass"
|
secondaryButtonStyle="glass"
|
||||||
@@ -132,10 +133,10 @@ export default function LandingPage() {
|
|||||||
members={[
|
members={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1",
|
||||||
name: "Robert Sullivan",
|
name: "Roberto Sullivano",
|
||||||
role: "Managing Partner & Senior Counsel",
|
role: "Managing Partner & Senior Counsel",
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766938360058-t14h8v9a.jpg",
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766941134189-gkd1fcuv.jpg",
|
||||||
imageAlt: "Robert Sullivan, Managing Partner",
|
imageAlt: "Roberto Sullivano, Managing Partner",
|
||||||
socialLinks: [
|
socialLinks: [
|
||||||
{ icon: Linkedin, url: "https://linkedin.com" }
|
{ icon: Linkedin, url: "https://linkedin.com" }
|
||||||
]
|
]
|
||||||
@@ -169,69 +170,84 @@ export default function LandingPage() {
|
|||||||
socialLinks: [
|
socialLinks: [
|
||||||
{ icon: Linkedin, url: "https://linkedin.com" }
|
{ 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>
|
||||||
|
|
||||||
<div id="testimonials" data-section="testimonials">
|
<div id="testimonials" data-section="testimonials">
|
||||||
<TestimonialCardEight
|
<TestimonialCardSix
|
||||||
title="Client Success Stories"
|
title="What our Partner's Say"
|
||||||
description="Trusted by leading businesses and individuals throughout New York"
|
description="Trusted by leading businesses and individuals throughout New York"
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground="noInvert"
|
useInvertedBackground="noInvert"
|
||||||
|
animationType="slide-up"
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1",
|
||||||
name: "James Patterson",
|
name: "James Patterson",
|
||||||
role: "CEO",
|
handle: "CEO, TechVentures Inc.",
|
||||||
company: "TechVentures Inc.",
|
testimonial: "Sullivan & Associates transformed our corporate strategy. Their expertise in complex transactions is unmatched.",
|
||||||
rating: 5,
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766938362756-wc4s3kcx.jpg",
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766938362756-wc4s3kcx.jpg",
|
||||||
imageAlt: "James Patterson testimonial"
|
imageAlt: "James Patterson testimonial"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2",
|
||||||
name: "Sarah Klein",
|
name: "Sarah Klein",
|
||||||
role: "Founder",
|
handle: "Founder, Klein & Associates Consulting",
|
||||||
company: "Klein & Associates Consulting",
|
testimonial: "The litigation team delivered exceptional results in our most critical case. Highly recommended for any serious legal matter.",
|
||||||
rating: 5,
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766140101670-ttp7xdlv.jpg",
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766140101670-ttp7xdlv.jpg",
|
||||||
imageAlt: "Sarah Klein testimonial"
|
imageAlt: "Sarah Klein testimonial"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3",
|
||||||
name: "Michael Torres",
|
name: "Michael Torres",
|
||||||
role: "General Counsel",
|
handle: "General Counsel, Metropolitan Manufacturing",
|
||||||
company: "Metropolitan Manufacturing",
|
testimonial: "Working with Sullivan & Associates has streamlined our legal operations. Their strategic guidance is invaluable.",
|
||||||
rating: 5,
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766938357059-679lptt9.jpg",
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766938357059-679lptt9.jpg",
|
||||||
imageAlt: "Michael Torres testimonial"
|
imageAlt: "Michael Torres testimonial"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "4",
|
id: "4",
|
||||||
name: "Linda Brooks",
|
name: "Linda Brooks",
|
||||||
role: "Business Owner",
|
handle: "Business Owner, Brooks Real Estate Group",
|
||||||
company: "Brooks Real Estate Group",
|
testimonial: "Exceptional negotiation skills and attention to detail. They protected our interests every step of the way.",
|
||||||
rating: 5,
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766140152452-p4x3ah4p.jpg",
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766140152452-p4x3ah4p.jpg",
|
||||||
imageAlt: "Linda Brooks testimonial"
|
imageAlt: "Linda Brooks testimonial"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "5",
|
id: "5",
|
||||||
name: "Christopher Lee",
|
name: "Christopher Lee",
|
||||||
role: "CFO",
|
handle: "CFO, Financial Solutions Corp",
|
||||||
company: "Financial Solutions Corp",
|
testimonial: "Their corporate law expertise helped us navigate a major acquisition seamlessly. True professionals.",
|
||||||
rating: 5,
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766140103339-f3be0gdh.jpg",
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766140103339-f3be0gdh.jpg",
|
||||||
imageAlt: "Christopher Lee testimonial"
|
imageAlt: "Christopher Lee testimonial"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "6",
|
id: "6",
|
||||||
name: "Amanda Johnson",
|
name: "Amanda Johnson",
|
||||||
role: "Executive Director",
|
handle: "Executive Director, Community Development Partners",
|
||||||
company: "Community Development Partners",
|
testimonial: "Responsive, knowledgeable, and deeply committed to our success. A truly outstanding legal partner.",
|
||||||
rating: 5,
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766320184384-whnns6as.jpg",
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766320184384-whnns6as.jpg",
|
||||||
imageAlt: "Amanda Johnson testimonial"
|
imageAlt: "Amanda Johnson testimonial"
|
||||||
}
|
}
|
||||||
@@ -239,6 +255,39 @@ export default function LandingPage() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</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">
|
<div id="contact" data-section="contact">
|
||||||
<ContactText
|
<ContactText
|
||||||
text="Ready to move forward with your legal matter? Contact our team today for a confidential consultation."
|
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>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterLogoReveal
|
<FooterCard
|
||||||
logoText="Sullivan & Associates"
|
logoText="Sullivan & Associates"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user