mirror of
https://github.com/ershisan99/DevToysWeb.git
synced 2025-12-16 12:32:48 +00:00
19 lines
412 B
TypeScript
19 lines
412 B
TypeScript
import { PropsWithChildren } from "react";
|
|
import { Metadata } from "next";
|
|
|
|
import { toolGroups } from "@/config/tools";
|
|
|
|
export const metadata: Metadata = {
|
|
title: toolGroups.text.tools.diff.longTitle,
|
|
description: toolGroups.text.tools.diff.description,
|
|
robots: {
|
|
googleBot: {
|
|
index: true,
|
|
},
|
|
},
|
|
};
|
|
|
|
export default function Layout({ children }: PropsWithChildren) {
|
|
return children;
|
|
}
|