Merge version_1 into main

Merge version_1 into main
This commit was merged in pull request #2.
This commit is contained in:
2026-03-24 12:43:10 +00:00
2 changed files with 21 additions and 14 deletions

View File

@@ -62,7 +62,6 @@ export default function ContactPage() {
}
]}
ariaLabel={"Contact Hero section"}
useInvertedBackground={false}
/>
</div>

View File

@@ -8,15 +8,23 @@ import { Scale, Briefcase, ArrowRight } from "lucide-react";
export default function HomePage() {
const navItems = [
{ name: "Home", id: "home", href: "/" },
{ name: "About Us", id: "about", href: "/about" },
];
const themeProps = {
defaultButtonVariant: "hover-magnetic", defaultTextAnimation: "background-highlight", borderRadius: "soft", contentWidth: "smallMedium", sizing: "mediumSizeLargeTitles", background: "grid", cardStyle: "inset", primaryButtonStyle: "double-inset", secondaryButtonStyle: "solid", headingFontWeight: "light"};
{ name: "Home", href: "/" },
{ name: "About Us", href: "/about" }
].map(item => ({ ...item, id: item.href }));
return (
<ThemeProvider {...themeProps}>
<ThemeProvider
defaultButtonVariant={"hover-magnetic"}
defaultTextAnimation={"background-highlight"}
borderRadius={"soft"}
contentWidth={"smallMedium"}
sizing={"mediumSizeLargeTitles"}
background={"grid"}
cardStyle={"inset"}
primaryButtonStyle={"double-inset"}
secondaryButtonStyle={"solid"}
headingFontWeight={"light"}
>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
brandName="Doughan Law Office"
@@ -41,7 +49,7 @@ export default function HomePage() {
buttonAnimation="slide-up"
mediaItems={[
{
imageSrc: "http://img.b2bpic.net/free-photo/smiling-mature-businessman-standing-office-hall_1262-3105.jpg?_wi=1", imageAlt: "Professional law office interior with legal documents"
imageSrc: "http://img.b2bpic.net/free-photo/smiling-mature-businessman-standing-office-hall_1262-3105.jpg", imageAlt: "Professional law office interior with legal documents"
}
]}
ariaLabel="Hero section"
@@ -56,19 +64,19 @@ export default function HomePage() {
tagIcon={Briefcase}
features={[
{
title: "Criminal Law", description: "Vigorous defense for individuals facing criminal charges, ensuring your rights are protected throughout the legal process.", imageSrc: "http://img.b2bpic.net/free-photo/chief-executive-officer-reading-accounting-paperwork-ensure-legal-accuracy_482257-103540.jpg?_wi=1", imageAlt: "Gavel and legal books for criminal law", buttonIcon: ArrowRight,
title: "Criminal Law", description: "Vigorous defense for individuals facing criminal charges, ensuring your rights are protected throughout the legal process.", imageSrc: "http://img.b2bpic.net/free-photo/chief-executive-officer-reading-accounting-paperwork-ensure-legal-accuracy_482257-103540.jpg", imageAlt: "Gavel and legal books for criminal law", buttonIcon: ArrowRight,
buttonHref: "/practice-areas"
},
{
title: "Civil Law", description: "Expert guidance on civil disputes, contracts, property matters, and personal injury claims to secure favorable outcomes.", imageSrc: "http://img.b2bpic.net/free-photo/business-professionals-reading-agreement-text_74855-1490.jpg?_wi=1", imageAlt: "Legal documents and scales of justice for civil law", buttonIcon: ArrowRight,
title: "Civil Law", description: "Expert guidance on civil disputes, contracts, property matters, and personal injury claims to secure favorable outcomes.", imageSrc: "http://img.b2bpic.net/free-photo/business-professionals-reading-agreement-text_74855-1490.jpg", imageAlt: "Legal documents and scales of justice for civil law", buttonIcon: ArrowRight,
buttonHref: "/practice-areas"
},
{
title: "Labor & Social Security", description: "Protecting the rights of employees and employers in workplace disputes, ensuring fair treatment and compliance with labor laws.", imageSrc: "http://img.b2bpic.net/free-photo/smiling-insurance-agent-going-through-paperwork-communicating-with-her-clients-meeting_637285-5796.jpg?_wi=1", imageAlt: "Team collaborating on legal documents for labor law", buttonIcon: ArrowRight,
title: "Labor & Social Security", description: "Protecting the rights of employees and employers in workplace disputes, ensuring fair treatment and compliance with labor laws.", imageSrc: "http://img.b2bpic.net/free-photo/smiling-insurance-agent-going-through-paperwork-communicating-with-her-clients-meeting_637285-5796.jpg", imageAlt: "Team collaborating on legal documents for labor law", buttonIcon: ArrowRight,
buttonHref: "/practice-areas"
},
{
title: "Marriage & Divorce", description: "Sensitive and strategic legal support for family matters, including marriage, divorce, child custody, and support.", imageSrc: "http://img.b2bpic.net/free-photo/sensual-couple-holding-hands_23-2148025334.jpg?_wi=1", imageAlt: "Family legal documents and rings for marriage and divorce law", buttonIcon: ArrowRight,
title: "Marriage & Divorce", description: "Sensitive and strategic legal support for family matters, including marriage, divorce, child custody, and support.", imageSrc: "http://img.b2bpic.net/free-photo/sensual-couple-holding-hands_23-2148025334.jpg", imageAlt: "Family legal documents and rings for marriage and divorce law", buttonIcon: ArrowRight,
buttonHref: "/practice-areas"
}
]}
@@ -96,4 +104,4 @@ export default function HomePage() {
</footer>
</ThemeProvider>
);
}
}