chore: transfer repo
This commit is contained in:
10
app/build-box/customize/page.tsx
Normal file
10
app/build-box/customize/page.tsx
Normal file
@@ -0,0 +1,10 @@
|
||||
import { BuildBoxCustomizePage } from "@/components/build-box/BuildBoxCustomizePage";
|
||||
import { Metadata } from "next";
|
||||
export const metadata: Metadata = {
|
||||
title: "Choose Your Box | Sent",
|
||||
description: "Select the perfect box design to complete your custom gift box."
|
||||
};
|
||||
|
||||
export default function BuildBoxCustomizeRoute() {
|
||||
return <BuildBoxCustomizePage />;
|
||||
}
|
||||
11
app/build-box/page.tsx
Normal file
11
app/build-box/page.tsx
Normal file
@@ -0,0 +1,11 @@
|
||||
import { BuildBoxPage } from "@/components/build-box/BuildBoxPage";
|
||||
import { Metadata } from "next";
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Build Your Box | Sent",
|
||||
description: "Create your custom gift box by selecting products you'd like to include."
|
||||
};
|
||||
|
||||
export default function BuildBoxRoute() {
|
||||
return <BuildBoxPage />;
|
||||
}
|
||||
Reference in New Issue
Block a user