mirror of
https://github.com/ershisan99/DevToysWeb.git
synced 2025-12-16 20:49:23 +00:00
18 lines
349 B
TypeScript
18 lines
349 B
TypeScript
import { PropsWithChildren } from "react";
|
|
import { Metadata } from "next";
|
|
|
|
import { toolGroups } from "@/config/tools";
|
|
|
|
export const metadata: Metadata = {
|
|
title: toolGroups.formatters.title,
|
|
robots: {
|
|
googleBot: {
|
|
index: false,
|
|
},
|
|
},
|
|
};
|
|
|
|
export default function Layout({ children }: PropsWithChildren) {
|
|
return children;
|
|
}
|