Update src/app/services/page.tsx

This commit is contained in:
2026-05-05 23:57:32 +00:00
parent 6921e4d134
commit 3cd67faf77

View File

@@ -6,7 +6,7 @@ import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import TextAbout from '@/components/sections/about/TextAbout';
export default function LandingPage() {
export default function Page() {
return (
<ThemeProvider
defaultButtonVariant="directional-hover"
@@ -24,32 +24,15 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home",
id: "/",
},
{
name: "About",
id: "/about",
},
{
name: "Services",
id: "/services",
},
{
name: "Claim Types",
id: "/claim-types",
},
{
name: "FAQ",
id: "/faq",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Services", id: "/services" },
{ name: "Claim Types", id: "/claim-types" },
{ name: "FAQ", id: "/faq" },
{ name: "Contact", id: "/contact" },
]}
brandName="Sweeney Solutions"
button={{ text: "Contact Us", href: "/contact" }}
/>
</div>
@@ -57,45 +40,15 @@ export default function LandingPage() {
<TextAbout
useInvertedBackground={false}
title="Claim Negotiation Services"
description="We take the burden of negotiation off your shoulders, dealing directly with insurance carriers to secure fair settlements."
tag="Our Services"
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{
items: [
{
label: "Home",
href: "/",
},
{
label: "About Us",
href: "/about",
},
{
label: "Services",
href: "/services",
},
],
},
{
items: [
{
label: "Claim Types",
href: "/claim-types",
},
{
label: "FAQ",
href: "/faq",
},
{
label: "Contact",
href: "/contact",
},
],
},
{ items: [{ label: "Home", href: "/" }, { label: "About Us", href: "/about" }, { label: "Services", href: "/services" }] },
{ items: [{ label: "Claim Types", href: "/claim-types" }, { label: "FAQ", href: "/faq" }, { label: "Contact", href: "/contact" }] },
]}
logoText="Sweeney Solutions"
/>