Update src/app/contact/page.tsx
This commit is contained in:
@@ -14,27 +14,22 @@ export default function LandingPage() {
|
||||
defaultButtonVariant="text-stagger"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="pill"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
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" },
|
||||
]}
|
||||
brandName="Patterson Plumbing & Heating"
|
||||
/>
|
||||
@@ -46,24 +41,10 @@ export default function LandingPage() {
|
||||
title="Get in Touch"
|
||||
description="Need emergency service or have a question? Contact us today. We are available 7 days a week."
|
||||
inputs={[
|
||||
{
|
||||
name: "name",
|
||||
type: "text",
|
||||
placeholder: "Your Name",
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
name: "email",
|
||||
type: "email",
|
||||
placeholder: "Email Address",
|
||||
required: true,
|
||||
},
|
||||
{ name: "name", type: "text", placeholder: "Your Name", required: true },
|
||||
{ name: "email", type: "email", placeholder: "Email Address", required: true },
|
||||
]}
|
||||
textarea={{
|
||||
name: "message",
|
||||
placeholder: "Tell us how we can help",
|
||||
required: true,
|
||||
}}
|
||||
textarea={{ name: "message", placeholder: "Tell us how we can help", required: true }}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/male-plumber-working-with-client-fix-kitchen-problems_23-2150990687.jpg"
|
||||
/>
|
||||
</div>
|
||||
@@ -74,13 +55,7 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
title="Professional Affiliations"
|
||||
description="Recognized by industry leaders for our professional standard."
|
||||
names={[
|
||||
"Plumbing Board Assoc",
|
||||
"HVAC Safety Council",
|
||||
"City Business Chamber",
|
||||
"Community First Alliance",
|
||||
"Service Excellence Guild",
|
||||
]}
|
||||
names={["Plumbing Board Assoc", "HVAC Safety Council", "City Business Chamber", "Community First Alliance", "Service Excellence Guild"]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -90,21 +65,9 @@ export default function LandingPage() {
|
||||
title="Ready to Help"
|
||||
tag="Quick Response"
|
||||
metrics={[
|
||||
{
|
||||
id: "1",
|
||||
value: "60m",
|
||||
description: "Avg Response Time",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
value: "24/7",
|
||||
description: "Expert Availability",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
value: "1",
|
||||
description: "Trusted Point of Contact",
|
||||
},
|
||||
{ id: "1", value: "60m", description: "Avg Response Time" },
|
||||
{ id: "2", value: "24/7", description: "Expert Availability" },
|
||||
{ id: "3", value: "1", description: "Trusted Point of Contact" },
|
||||
]}
|
||||
metricsAnimation="slide-up"
|
||||
/>
|
||||
@@ -113,14 +76,8 @@ export default function LandingPage() {
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoReveal
|
||||
logoText="Patterson Plumbing & Heating"
|
||||
leftLink={{
|
||||
text: "Privacy Policy",
|
||||
href: "#",
|
||||
}}
|
||||
rightLink={{
|
||||
text: "Terms of Service",
|
||||
href: "#",
|
||||
}}
|
||||
leftLink={{ text: "Privacy Policy", href: "#" }}
|
||||
rightLink={{ text: "Terms of Service", href: "#" }}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
|
||||
Reference in New Issue
Block a user