import { Suspense } from "react"; import type { Metadata } from "next"; import AncillaryContent from "@/app/components/ancillary/AncillaryContent"; import ContentSkeleton from "@/app/components/skeletons/ContentSkeleton"; import { getStoreName } from "@/app/utils/branding"; import Breadcrumb from "@/app/components/reuseableUI/breadcrumb"; import Heading from "@/app/components/reuseableUI/heading"; const baseUrl = process.env.NEXT_PUBLIC_SITE_URL || "http://localhost:3000"; const storeName = getStoreName(); const title = `Shipping & Returns | ${storeName}`; const description = `Learn about ${storeName} shipping options, delivery times, return policy, and how to process returns for your products.`; const canonicalUrl = `${baseUrl.replace(/\/$/, "")}/shipping-returns`; const ogImageUrl = `${baseUrl.replace(/\/$/, "")}/og-image.png`; export const metadata: Metadata = { title, description, alternates: { canonical: canonicalUrl, }, openGraph: { title, description, type: "website", url: canonicalUrl, siteName: storeName, images: [ { url: ogImageUrl, width: 1200, height: 630, alt: `${storeName} - Shipping & Returns`, }, ], }, twitter: { card: "summary_large_image", title, description, images: [ogImageUrl], }, } export default function ShippingAndReturnsPage() { const pageTitle = "Shipping & Returns"; return (
}>
); }