Merge version_1 into main #3

Merged
bender merged 1 commits from version_1 into main 2026-03-13 15:57:00 +00:00

View File

@@ -10,10 +10,10 @@ import { Award } from "lucide-react";
export default function AboutPage() {
const navItems = [
{ name: "Home", id: "home" },
{ name: "Services", id: "services" },
{ name: "About", id: "about" },
{ name: "Contact", id: "contact" },
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
];
const footerColumns = [
@@ -82,7 +82,6 @@ export default function AboutPage() {
{ text: "Schedule Service", href: "/contact" },
]}
className="py-20"
containerClassName="max-w-6xl grid grid-cols-1 md:grid-cols-2 gap-12 items-center"
titleClassName="text-5xl font-bold mb-6"
descriptionClassName="text-lg opacity-80 leading-relaxed mb-8"
tagClassName="inline-flex items-center gap-2 px-4 py-2 rounded-full bg-opacity-10 mb-6"
@@ -139,4 +138,4 @@ export default function AboutPage() {
</div>
</ThemeProvider>
);
}
}