File tree Expand file tree Collapse file tree 8 files changed +14
-11
lines changed Expand file tree Collapse file tree 8 files changed +14
-11
lines changed Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ export const Sponsors: React.FunctionComponent<ISponsorsProps> = (props: React.P
63
63
64
64
{
65
65
sponsors && sponsors . companies && sponsors . companies . length > 0 && (
66
- < div className = "flex justify-center space-x-4 flex-wrap" >
66
+ < div className = "flex justify-center space-x-8 flex-wrap" >
67
67
{
68
68
sponsors . companies . map ( ( sponsor ) => (
69
69
< a
Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ The following settings are supported to be split in multiple files:
71
71
| ` frontMatter.data.files ` | ` ./.frontmatter/config/data/files/ ` | ` https://frontmatter.codes/config/data.files.schema.json ` |
72
72
| ` frontMatter.data.folders ` | ` ./.frontmatter/config/data/folders/ ` | ` https://frontmatter.codes/config/data.folders.schema.json ` |
73
73
| ` frontMatter.data.types ` | ` ./.frontmatter/config/data/types/ ` | ` https://frontmatter.codes/config/data.types.schema.json ` |
74
- | ` frontMatter.media.contentTypes ` | ` ./.frontmatter/config/meda /contenttypes/ ` | ` https://frontmatter.codes/config/media.contenttypes.schema.json ` |
74
+ | ` frontMatter.media.contentTypes ` | ` ./.frontmatter/config/media /contenttypes/ ` | ` https://frontmatter.codes/config/media.contenttypes.schema.json ` |
75
75
| ` frontMatter.taxonomy.contentTypes ` | ` ./.frontmatter/config/taxonomy/contenttypes/ ` | ` https://frontmatter.codes/config/taxonomy.contenttypes.schema.json ` |
76
76
| ` frontMatter.taxonomy.fieldGroups ` | ` ./.frontmatter/config/taxonomy/fieldgroups/ ` | ` https://frontmatter.codes/config/taxonomy.fieldgroups.schema.json ` |
77
77
Original file line number Diff line number Diff line change @@ -23,13 +23,9 @@ const api = async (req: NextApiRequest, res: NextApiResponse) => {
23
23
return res . status ( 403 ) . send ( { } ) ;
24
24
}
25
25
26
- const instruction = `Generate enganging blog post title, with a maximum of ${
26
+ const instruction = `Come up with a better title for my blog post that has the working title " ${ title } ". It should not be more than ${
27
27
nrOfCharacters || 60
28
- } characters.
29
-
30
- The topic of the blog post is: ${ title } .
31
-
32
- Desired format: just a string, e.g. "My first blog post"` ;
28
+ } characters in total. The desired format should be just a string, e.g. "My first blog post"`;
33
29
34
30
const choices = await OpenAiService . getCompletion ( instruction ) ;
35
31
You can’t perform that action at this time.
0 commit comments