Skip to content

Commit 02b34cd

Browse files
committed
Merge branch 'main' into dev
2 parents 269da60 + 99a0365 commit 02b34cd

File tree

8 files changed

+14
-11
lines changed

8 files changed

+14
-11
lines changed

components/Page/Sponsors.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ export const Sponsors: React.FunctionComponent<ISponsorsProps> = (props: React.P
6363

6464
{
6565
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">
6767
{
6868
sponsors.companies.map((sponsor) => (
6969
<a

content/docs/settings/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ The following settings are supported to be split in multiple files:
7171
| `frontMatter.data.files` | `./.frontmatter/config/data/files/` | `https://frontmatter.codes/config/data.files.schema.json` |
7272
| `frontMatter.data.folders` | `./.frontmatter/config/data/folders/` | `https://frontmatter.codes/config/data.folders.schema.json` |
7373
| `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` |
7575
| `frontMatter.taxonomy.contentTypes` | `./.frontmatter/config/taxonomy/contenttypes/` | `https://frontmatter.codes/config/taxonomy.contenttypes.schema.json` |
7676
| `frontMatter.taxonomy.fieldGroups` | `./.frontmatter/config/taxonomy/fieldgroups/` | `https://frontmatter.codes/config/taxonomy.fieldgroups.schema.json` |
7777

pages/api/ai-title.ts

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,9 @@ const api = async (req: NextApiRequest, res: NextApiResponse) => {
2323
return res.status(403).send({});
2424
}
2525

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 ${
2727
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"`;
3329

3430
const choices = await OpenAiService.getCompletion(instruction);
3531

6.58 KB
Loading
Lines changed: 1 addition & 0 deletions
Loading
5.34 KB
Binary file not shown.

0 commit comments

Comments
 (0)