Update src/app/contact/page.tsx

This commit is contained in:
2026-04-25 01:38:19 +00:00
parent f8f680c42e
commit e5740ceceb

View File

@@ -3,39 +3,58 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import React from 'react';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import ContactText from '@/components/sections/contact/ContactText';
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FooterMedia from '@/components/sections/footer/FooterMedia';
export default function ContactPage() {
return (
<ThemeProvider>
<NavbarLayoutFloatingInline
navItems={[
{ name: "Services", id: "/services" },
{ name: "Why Us", id: "/about" },
{ name: "Reviews", id: "/reviews" },
{ name: "Contact", id: "/contact" },
]}
brandName="ArborPro"
button={{ text: "Get Quote", href: "/contact" }}
/>
<main className="pt-32 pb-20">
<div id="contact">
<ContactText
text="Contact Us For Your Tree Care Needs"
<ThemeProvider
defaultButtonVariant="text-stagger"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="medium"
sizing="medium"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Services", id: "/services" },
{ name: "Contact", id: "/contact" },
]}
brandName="ArborPro"
button={{ text: "Get Quote", href: "/contact" }}
/>
</div>
<main>
<div id="contact" data-section="contact">
<ContactCTA
tag="Get in Touch"
title="Contact Us For Your Tree Care Needs"
description="Reach out to our professional team today for expert arboricultural services."
background={{ variant: "plain" }}
useInvertedBackground={false}
buttons={[{ text: "Submit", href: "#" }]}
/>
</div>
</main>
<FooterMedia
logoText="ArborPro"
columns={[
{ title: "Company", items: [{ label: "About Us", href: "/about" }, { label: "Reviews", href: "/reviews" }] },
{ title: "Services", items: [{ label: "Pruning", href: "/services" }, { label: "Removal", href: "/services" }] },
{ title: "Support", items: [{ label: "Contact", href: "/contact" }, { label: "Privacy", href: "/privacy" }] },
]}
/>
<div id="footer" data-section="footer">
<FooterMedia
logoText="ArborPro"
videoSrc="https://assets.mixkit.co/videos/preview/mixkit-forest-stream-in-the-sunlight-356-large.mp4"
columns={[
{ title: "Company", items: [{ label: "About Us", href: "/about" }, { label: "Reviews", href: "/reviews" }] },
{ title: "Services", items: [{ label: "Pruning", href: "/services" }, { label: "Removal", href: "/services" }] },
{ title: "Support", items: [{ label: "Contact", href: "/contact" }, { label: "Privacy", href: "/privacy" }] },
]}
/>
</div>
</ThemeProvider>
);
}
}