15 lines
442 B
TypeScript
15 lines
442 B
TypeScript
import type { Metadata } from "next";
|
|
import LoginClient from "./LoginClient";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Customer Login | VG Fence Products",
|
|
description: "Access your contractor portal to view exclusive pricing, manage orders, and track deliveries. Secure B2B portal for Ontario fencing professionals.",
|
|
alternates: {
|
|
canonical: "/login"
|
|
}
|
|
};
|
|
|
|
export default function LoginPage() {
|
|
return <LoginClient />;
|
|
}
|