Update user navbar and brewery card styling

This commit is contained in:
Aaron William Po
2023-12-02 14:09:33 -05:00
parent d57623e705
commit 415f1b6a30
2 changed files with 2 additions and 1 deletions

View File

@@ -22,7 +22,7 @@ const BreweryCard: FC<{ brewery: z.infer<typeof BreweryPostQueryResult> }> = ({
src={brewery.breweryImages[0].path} src={brewery.breweryImages[0].path}
alt={brewery.name} alt={brewery.name}
width="1029" width="1029"
height="110" height="1029"
crop="fill" crop="fill"
className="h-full object-cover" className="h-full object-cover"
/> />

View File

@@ -36,6 +36,7 @@ const useNavbar = () => {
/** These pages are accessible to both authenticated and unauthenticated users. */ /** These pages are accessible to both authenticated and unauthenticated users. */
const otherPages: readonly Page[] = [ const otherPages: readonly Page[] = [
{ slug: '/beers', name: 'Beers' }, { slug: '/beers', name: 'Beers' },
{ slug: '/beers/styles', name: 'Beer Styles' },
{ slug: '/breweries', name: 'Breweries' }, { slug: '/breweries', name: 'Breweries' },
]; ];