mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-02-16 10:42:08 +00:00
Style updates
fix navbar to remain sticky, add fade in to layout component, update font to Space Grotesk
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
import { NODE_ENV } from '@/config/env';
|
||||
import { PrismaClient } from '@prisma/client';
|
||||
import { NODE_ENV } from '../config/env';
|
||||
|
||||
const globalForPrisma = global as unknown as { prisma: PrismaClient };
|
||||
|
||||
|
||||
@@ -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 } },
|
||||
|
||||
@@ -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 } },
|
||||
|
||||
Reference in New Issue
Block a user