Update src/app/contact/page.tsx

This commit is contained in:
2026-03-31 18:02:36 +00:00
parent 44977bf188
commit 5ee8a184a5

View File

@@ -7,7 +7,7 @@ import LegalSection from '@/components/legal/LegalSection';
import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
export default function LandingPage() {
export default function ContactPage() {
return (
<ThemeProvider
defaultButtonVariant="text-shift"
@@ -22,79 +22,65 @@ export default function LandingPage() {
headingFontWeight="normal"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{
name: "Home", id: "/"},
{
name: "Services", id: "/services"},
{
name: "Tips", id: "/tips"},
{
name: "About", id: "/about"},
{
name: "Reviews", id: "/reviews"},
{
name: "Contact", id: "/contact"},
]}
brandName="Riverview Trailer & Marine"
/>
</div>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "Tips", id: "/tips" },
{ name: "About", id: "/about" },
{ name: "Reviews", id: "/reviews" },
{ name: "Contact", id: "/contact" }
]}
brandName="Riverview Trailer & Marine"
/>
</div>
<div id="legal" data-section="legal">
<LegalSection
layout="section"
title="Contact Procedures"
sections={[
{
heading: "Service Appointments", content: "Please call or email to schedule your repair."},
]}
/>
</div>
<div id="legal" data-section="legal">
<LegalSection
layout="section"
title="Contact Procedures"
sections={[
{ heading: "Service Appointments", content: [{ text: "Please call or email to schedule your repair." }] }
]}
/>
</div>
<div id="metric" data-section="metric">
<MetricCardTwo
animationType="slide-up"
textboxLayout="default"
gridVariant="uniform-all-items-equal"
useInvertedBackground={false}
title="Location"
description="Visit us in Merrimac, MA."
metrics={[
{
id: "1", value: "Mon-Fri", description: "Business Hours"},
{
id: "2", value: "978-994", description: "Service Phone"},
]}
/>
</div>
<div id="metric" data-section="metric">
<MetricCardTwo
animationType="slide-up"
textboxLayout="default"
gridVariant="uniform-all-items-equal"
useInvertedBackground={false}
title="Location"
description="Visit us in Merrimac, MA."
metrics={[
{ id: "1", value: "Mon-Fri", description: "Business Hours" },
{ id: "2", value: "978-994", description: "Service Phone" }
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseCard
logoText="Riverview Trailer & Marine"
columns={[
{
title: "Contact", items: [
{
label: "71 E Main St, Merrimac, MA", href: "#"},
{
label: "(978) 994-5235", href: "tel:9789945235"},
],
},
{
title: "Quick Links", items: [
{
label: "Home", href: "/"},
{
label: "Services", href: "/services"},
{
label: "Contact", href: "/contact"},
],
},
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseCard
logoText="Riverview Trailer & Marine"
columns={[
{
title: "Contact", items: [
{ label: "71 E Main St, Merrimac, MA", href: "#" },
{ label: "(978) 994-5235", href: "tel:9789945235" }
]
},
{
title: "Quick Links", items: [
{ label: "Home", href: "/" },
{ label: "Services", href: "/services" },
{ label: "Contact", href: "/contact" }
]
}
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);