feat(admin): rewrite orders page with tabs, search, multi-select filters

- AdminOrdersPanel: clean rewrite matching earth-tone theme
- Add status tabs (All/Pending/Picked Up) with pill-style buttons
- Add search bar for name, phone, order ID
- Add stop multi-select dropdown with checkbox filter
- Standard 7-column table with pagination
- UpgradePlanModal: Apple HIG glass-style modal component
- DashboardHeader: reusable header with upgrade modal integration
- DashboardUpgradeButton: standalone upgrade button component
- Update stripe-checkout to support annual billing period
- Fix readability in tools/addons section (darker badges)
This commit is contained in:
2026-06-01 20:29:30 +00:00
parent ca864e61a0
commit 2747d8ea45
10 changed files with 1038 additions and 277 deletions
+41
View File
@@ -0,0 +1,41 @@
import type { Metadata } from "next";
const BASE_URL = process.env.NEXT_PUBLIC_SITE_URL ?? "https://yourdomain.com";
export const metadata: Metadata = {
title: "Our Story | Three Generations of Sweet Corn Excellence",
description:
"Learn about Tuxedo Corn's heritage - three generations of growing and shipping Olathe Sweet Sweet Corn from our family farm in Olathe, Colorado since 1982.",
openGraph: {
title: "Our Story | Tuxedo Corn",
description:
"Three generations of sweet corn excellence. Learn about our family farm and the Olathe Sweet difference.",
url: `${BASE_URL}/tuxedo/about`,
images: [
{
url: `${BASE_URL}/og-tuxedo-about.jpg`,
width: 1200,
height: 630,
alt: "Tuxedo Corn Family Farm - Three Generations of Excellence",
},
],
},
twitter: {
card: "summary_large_image",
title: "Our Story | Tuxedo Corn",
description:
"Three generations of sweet corn excellence. Learn about our family farm and the Olathe Sweet difference.",
images: [`${BASE_URL}/og-tuxedo-about.jpg`],
},
alternates: {
canonical: `${BASE_URL}/tuxedo/about`,
},
};
export default function TuxedoAboutLayout({
children,
}: {
children: React.ReactNode;
}) {
return children;
}