15 lines
450 B
TypeScript
15 lines
450 B
TypeScript
import type { Metadata } from "next";
|
|
import ContactClient from "./ContactClient";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Contact Us | VG Fence Products",
|
|
description: "Get in touch with our expert team for quotes, product inquiries, or technical support. We are located in Ayr, Ontario and serve the entire province.",
|
|
alternates: {
|
|
canonical: "/contact"
|
|
}
|
|
};
|
|
|
|
export default function ContactPage() {
|
|
return <ContactClient />;
|
|
}
|