11 lines
318 B
TypeScript
11 lines
318 B
TypeScript
import { ProductsPage } from "@/components/products/ProductsPage";
|
|
import { Metadata } from "next";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Products | Sent",
|
|
description: "Explore our collection of ready-made gift boxes and baskets."
|
|
};
|
|
|
|
export default function ProductsRoute() {
|
|
return <ProductsPage />;
|
|
}
|