planpost-offer-landing/src/app/(features-landing)/bulk-content/layout.tsx
2025-10-25 16:05:53 +06:00

19 lines
532 B
TypeScript

import React from "react";
export const metadata = {
title: "AI Social Media Content Generator | Create Posts Fast - PlanPost AI",
description: "Struggling with social media content? PlanPost AI's content generator creates engaging captions, ideas, and images in seconds. Save 10+ hours weekly, grow your audience, and post consistently. Start Your Free Trial!",
};
export default function BulkLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<section >
{children}
</section>
);
}