15 lines
585 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { CleanCacheForm } from "./form";
import type { Metadata } from "next";
export const metadata: Metadata = {
title: "腾讯云EdgeOne缓存刷新工具",
description: "单页面清理腾讯云Edgeone缓存提供快速便捷的缓存刷新功能支持URL、目录、Host、全部以及基于缓存标签的刷新操作。数据保存在浏览器本地不会上传到任何服务器。",
};
export default function CleanCachePage() {
return (
<div className="w-full max-w-4xl mx-auto flex items-start justify-center">
<CleanCacheForm />
</div>
);
}