e2172c20f2
Total rebrand across Web project: - Package name: casera-web -> honeydue-web - Cookie: casera-token -> honeydue-token - Theme store: casera-theme -> honeydue-theme - File sharing: .casera -> .honeydue, component/function renames - casera-file-handler.tsx -> honeydue-file-handler.tsx - All UI text, metadata, OG tags updated - Domains: casera.treytartt.com -> honeyDue.treytartt.com - Demo data emails updated - All documentation updated Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
22 lines
537 B
TypeScript
22 lines
537 B
TypeScript
import type { Metadata } from "next";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Try honeyDue — Free Demo",
|
|
description:
|
|
"Try honeyDue without an account. Manage tasks, contractors, and documents in a live demo.",
|
|
openGraph: {
|
|
title: "Try honeyDue — Free Demo",
|
|
description:
|
|
"Try honeyDue without an account. Manage tasks, contractors, and documents in a live demo.",
|
|
type: "website",
|
|
},
|
|
};
|
|
|
|
export default function DemoLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return children;
|
|
}
|