2026-04-23 10:15:31 +05:30

15 lines
516 B
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import type { Metadata } from "next";
import ContactClient from "./ContactClient";
export const metadata: Metadata = {
title: "Contact VG Fence Products | KitchenerWaterloo Ontario",
description: "Contact VG Fence Products for contractor pricing, fence supply, temp fence rental, wood staining, and 2D drawing services. Email info@vgfenceproducts.com. Response within 2 business hours.",
alternates: {
canonical: "/contact"
}
};
export default function ContactPage() {
return <ContactClient />;
}