This commit is contained in:
He
2025-03-25 21:47:40 +08:00
commit dc2b36db5d
73 changed files with 6154 additions and 0 deletions

19
app/layout.tsx Normal file
View File

@@ -0,0 +1,19 @@
import type { Metadata } from 'next'
import './globals.css'
export const metadata: Metadata = {
title: 'Spircape API',
description: 'Spircape API',
}
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode
}>) {
return (
<html lang="en">
<body>{children}</body>
</html>
)
}