Skip to content

Commit

Permalink
increase summary character limit to 1000
Browse files Browse the repository at this point in the history
  • Loading branch information
rccsousa committed Oct 21, 2024
1 parent 098c5ad commit 08aefd2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions src/app/_components/Header/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ import Logo from "@/app/_components/Header/Logo";
import { fetchGlobals } from "@/app/_utilities/contentFetchers";

const defaultStyle = {
'--dynamic-background': "transparent",
'--dynamic-color': "var(--dark-rock-800)",
'--dynamic-width': '100%'
"--dynamic-background": "transparent",
"--dynamic-color": "var(--dark-rock-800)",
"--dynamic-width": "100%",
};

export async function Header({ style = defaultStyle }) {
Expand All @@ -22,7 +22,7 @@ export async function Header({ style = defaultStyle }) {
{/* @ts-ignore */}
<header className={styles.container} style={style}>
<div>
<Logo />
<Link href={"/"}><Logo /></Link>
</div>

{/* TODO: Conditionally format Content Hub to reflect active link?*/}
Expand Down
2 changes: 1 addition & 1 deletion src/collections/Blogposts/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export const Blogposts: CollectionConfig = {
name: "summary",
type: "textarea",
required: true,
maxLength: 250,
maxLength: 1000,
},
{
name: "content",
Expand Down

0 comments on commit 08aefd2

Please sign in to comment.