cleanup and cache the paste response 5 mins
This commit is contained in:
@ -1,18 +1,18 @@
|
||||
import "./globals.css";
|
||||
import type { Metadata } from "next";
|
||||
import { ThemeProvider } from "@/app/components/theme-provider";
|
||||
|
||||
import "./globals.css";
|
||||
import { ReactNode } from "react";
|
||||
import { jetbrainsMono } from "@/app/common/font/font";
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Paste",
|
||||
description: "Simple Pastebin",
|
||||
description: "A simple Pastebin service",
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
children: React.ReactNode;
|
||||
children: ReactNode;
|
||||
}>) {
|
||||
return (
|
||||
<html lang="en">
|
||||
|
Reference in New Issue
Block a user