Style updates

fix navbar to remain sticky, add fade in to layout component, update font to Space Grotesk
This commit is contained in:
Aaron William Po
2023-04-08 02:11:13 -04:00
parent d2821eeec0
commit 80bed9b4dc
7 changed files with 17 additions and 18 deletions

View File

@@ -23,7 +23,7 @@ const createNewBeerImages = async ({
beerImagesPromises.push(
prisma.beerImage.create({
data: {
path: 'https://picsum.photos/1040/1080',
path: 'https://picsum.photos/5000/5000',
alt: 'Placeholder beer image.',
caption: 'Placeholder beer image caption.',
beerPost: { connect: { id: beerPost.id } },

View File

@@ -27,7 +27,7 @@ const createNewBreweryImages = async ({
breweryImagesPromises.push(
prisma.breweryImage.create({
data: {
path: 'https://picsum.photos/1040/1080',
path: 'https://picsum.photos/5000/5000',
alt: 'Placeholder brewery image.',
caption: 'Placeholder brewery image caption.',
breweryPost: { connect: { id: breweryPost.id } },