Spaces:
Build error
Build error
Upload pages/prompts.js with huggingface_hub
Browse files- pages/prompts.js +18 -0
pages/prompts.js
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import Head from 'next/head'
|
| 2 |
+
import PromptLibrary from '../components/PromptLibrary'
|
| 3 |
+
|
| 4 |
+
export default function Prompts() {
|
| 5 |
+
return (
|
| 6 |
+
<>
|
| 7 |
+
<Head>
|
| 8 |
+
<title>Biblioteca de Prompts - AI.Wiki.BR</title>
|
| 9 |
+
<meta name="description" content="Biblioteca completa de prompts para IA em escrit贸rios jur铆dicos, administrativos e prepara莽茫o para concursos p煤blicos." />
|
| 10 |
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
| 11 |
+
</Head>
|
| 12 |
+
|
| 13 |
+
<main>
|
| 14 |
+
<PromptLibrary />
|
| 15 |
+
</main>
|
| 16 |
+
</>
|
| 17 |
+
)
|
| 18 |
+
}
|