import { Metadata } from 'next'
export const metadata: Metadata = {
title: 'Pricing Plans - Choose Your Writing Journey',
description: 'Choose the perfect Bookwiz plan for your writing needs. From free starter plans to professional author tools with unlimited AI assistance and advanced features.',
keywords: [
'writing software pricing',
'author tools cost',
'AI writing assistant price',
'novel writing subscription',
'creative writing platform pricing'
],
openGraph: {
title: 'Bookwiz Pricing - Choose Your Writing Journey',
description: 'Choose the perfect Bookwiz plan for your writing needs. From free starter plans to professional author tools with unlimited AI assistance.',
type: 'website',
},
twitter: {
card: 'summary_large_image',
title: 'Bookwiz Pricing - Choose Your Writing Journey',
description: 'Choose the perfect Bookwiz plan for your writing needs. From free starter plans to professional author tools with unlimited AI assistance.',
},
}
export default function PricingLayout({
children,
}: {
children: React.ReactNode
}) {
return children
}