Update src/app/sell/page.tsx

This commit is contained in:
2026-05-01 00:51:45 +00:00
parent 50192f8d3b
commit e8a5225056

View File

@@ -7,7 +7,7 @@ import FooterCard from '@/components/sections/footer/FooterCard';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
export default function LandingPage() {
export default function SellPage() {
return (
<ThemeProvider
defaultButtonVariant="bounce-effect"
@@ -25,20 +25,12 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Sell Your House",
id: "/sell",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "Sell Your House", id: "/sell" },
{ name: "Contact", id: "/contact" },
]}
brandName="Diamond Home Buyers LLC"
button={{ text: "Get Started", href: "/contact" }}
/>
</div>
@@ -47,25 +39,16 @@ export default function LandingPage() {
useInvertedBackground={false}
title="How Our Process Works"
description={[
"We keep it simple: You reach out with your address, we conduct a quick market review, and we present a no-obligation cash offer.",
"If you accept, we coordinate a closing date that works for you. You walk away with cash in hand, having paid zero in commissions, fees, or repair costs.",
]}
"We keep it simple: You reach out with your address, we conduct a quick market review, and we present a no-obligation cash offer.", "If you accept, we coordinate a closing date that works for you. You walk away with cash in hand, having paid zero in commissions, fees, or repair costs."]}
/>
</div>
<div id="contact" data-section="contact">
<ContactText
useInvertedBackground={false}
background={{
variant: "plain",
}}
background={{ variant: "plain" }}
text="Don't wait months to sell your house. Our local Michigan team is ready to help you close fast."
buttons={[
{
text: "Request a Call",
href: "/contact",
},
]}
buttons={[{ text: "Request a Call", href: "/contact" }]}
/>
</div>