19 lines
532 B
TypeScript
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>
|
|
);
|
|
}
|