chore: format

This commit is contained in:
Aaron Yarborough 2024-03-13 16:35:34 +00:00
parent c931533b9e
commit 81166e9799
7 changed files with 11 additions and 11 deletions

View file

@ -3,7 +3,7 @@ import DefaultLayout from '@/layouts/DefaultLayout/DefaultLayout'
import Article from '@/components/Article/Article' import Article from '@/components/Article/Article'
import { getStaticEntryPaths, getStaticEntryProps } from '@/lib/content' import { getStaticEntryPaths, getStaticEntryProps } from '@/lib/content'
const CONTENT_PATH = "./content/fun" const CONTENT_PATH = './content/fun'
export const getStaticPaths = () => getStaticEntryPaths(CONTENT_PATH) export const getStaticPaths = () => getStaticEntryPaths(CONTENT_PATH)
export const getStaticProps = (ctx) => getStaticEntryProps(CONTENT_PATH, ctx) export const getStaticProps = (ctx) => getStaticEntryProps(CONTENT_PATH, ctx)

View file

@ -3,7 +3,7 @@ import React from 'react'
import Link from 'next/link' import Link from 'next/link'
import { getStaticEntryListProps } from '@/lib/content' import { getStaticEntryListProps } from '@/lib/content'
export const getStaticProps = () => getStaticEntryListProps("./content/fun", "/fun/") export const getStaticProps = () => getStaticEntryListProps('./content/fun', '/fun/')
export default function Fun ({ entries, urlPrefix }) { export default function Fun ({ entries, urlPrefix }) {
return ( return (

View file

@ -3,7 +3,7 @@ import DefaultLayout from '@/layouts/DefaultLayout/DefaultLayout'
import Article from '@/components/Article/Article' import Article from '@/components/Article/Article'
import { getStaticEntryPaths, getStaticEntryProps } from '@/lib/content' import { getStaticEntryPaths, getStaticEntryProps } from '@/lib/content'
const CONTENT_PATH = "./content/recipes" const CONTENT_PATH = './content/recipes'
export const getStaticPaths = () => getStaticEntryPaths(CONTENT_PATH) export const getStaticPaths = () => getStaticEntryPaths(CONTENT_PATH)
export const getStaticProps = (ctx) => getStaticEntryProps(CONTENT_PATH, ctx) export const getStaticProps = (ctx) => getStaticEntryProps(CONTENT_PATH, ctx)

View file

@ -3,7 +3,7 @@ import React from 'react'
import Link from 'next/link' import Link from 'next/link'
import { getStaticEntryListProps } from '@/lib/content' import { getStaticEntryListProps } from '@/lib/content'
export const getStaticProps = () => getStaticEntryListProps("./content/recipes", "/recipes/") export const getStaticProps = () => getStaticEntryListProps('./content/recipes', '/recipes/')
export default function Recipes ({ entries, urlPrefix }) { export default function Recipes ({ entries, urlPrefix }) {
return ( return (

View file

@ -3,8 +3,8 @@ import DefaultLayout from '@/layouts/DefaultLayout/DefaultLayout'
import { getStaticEntryPaths, getStaticEntryProps } from '@/lib/content' import { getStaticEntryPaths, getStaticEntryProps } from '@/lib/content'
import Article from '@/components/Article/Article' import Article from '@/components/Article/Article'
export const getStaticPaths = () => getStaticEntryPaths("./content/writing") export const getStaticPaths = () => getStaticEntryPaths('./content/writing')
export const getStaticProps = (ctx) => getStaticEntryProps("./content/writing", ctx) export const getStaticProps = (ctx) => getStaticEntryProps('./content/writing', ctx)
export default function WritingSingle ({ attributes, html }) { export default function WritingSingle ({ attributes, html }) {
return ( return (

View file

@ -3,7 +3,7 @@ import React from 'react'
import Link from 'next/link' import Link from 'next/link'
import { getStaticEntryListProps } from '@/lib/content' import { getStaticEntryListProps } from '@/lib/content'
export const getStaticProps = () => getStaticEntryListProps("./content/writing", "/writing/") export const getStaticProps = () => getStaticEntryListProps('./content/writing', '/writing/')
export default function Writing ({ entries, urlPrefix }) { export default function Writing ({ entries, urlPrefix }) {
return ( return (