Skip to content

Commit

Permalink
fix: update website
Browse files Browse the repository at this point in the history
  • Loading branch information
banhaclong20 committed Jan 9, 2023
1 parent ac224a1 commit 3e84fe7
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 14 deletions.
Binary file modified public/assets/chefs/Chef_Tri_Tran.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed public/assets/gallery-5.jpg
Binary file not shown.
Binary file added public/assets/oishii-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 0 additions & 4 deletions src/lib/components/ImageGallery/images.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,6 @@ export const images = [
src: "/assets/menu/SushiSME.jpg",
caption: "Sushi Boat",
},
{
src: "/assets/menu/oishiismu.jpg",
caption: "Special Oishii Chef",
},
{
src: "/assets/menu/tunatower.jpg",
caption: "Tuna Tower",
Expand Down
2 changes: 1 addition & 1 deletion src/lib/components/TopHeader/TopHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ const TopHeader = () => {
w="full"
backgroundColor="#272c34"
>
<Container maxW="3xl">
<Container maxW="4xl" pl="0">
<SimpleGrid
columns={2}
height="50px"
Expand Down
5 changes: 3 additions & 2 deletions src/lib/layout/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -294,9 +294,10 @@ export default function DesktopNavWithSubnavigation() {
</Flex>
<Flex>
<Image
width="122px"
width={{ base: "150px", md: "270px" }}
alt="Oishii Restaurants Logo"
src="/assets/oishii-logo.jpg"
src="/assets/oishii-logo.png"
className="oishii-logo-img"
onClick={() => router.push("/")}
/>
</Flex>
Expand Down
12 changes: 12 additions & 0 deletions src/lib/styles/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,18 @@
text-align: center;
}

.oishii-logo-img {
max-width: inherit;
width: 150px;
}

@media screen and (min-width: '768px') {
.oishii-logo-img {
max-width: 100%;
width: 270px;
}
}

.hero-slider-nav:hover {
color: black
}
Expand Down
10 changes: 3 additions & 7 deletions src/pages/our-team/OurTeam.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,11 @@ const data = [
imageURL: "/assets/Chef_Thanh_Nguyen.jpg",
name: "Chef Thanh Nguyen",
position: "Owner & Executive Chef",
shortIntro:
"Thanh is known for his custom sushi with special requests, and some of his most popular rolls include the #42 Roll and the G Roll.",
},
{
imageURL: "/assets/gallery-5.jpg",
imageURL: "/assets/chefs/Chef_Tri_Tran.jpg",
name: "Chef Tri Tran",
position: "Owner & Executive Chef",
shortIntro:
"Tri Tran is executive chef at Oishii. He is a nephew and restaurant partner of owner Thanh Nguyen. His most popular rolls include the Royce Roll and Caesar Roll.",
position: "Chef Partner & Director of Operation",
},
];

Expand Down Expand Up @@ -114,7 +110,7 @@ const OurTeam = () => {
spacing="4"
>
{data.map((item) => (
<TeamItem {...item} />
<TeamItem {...item} key={item.name} />
))}
</SimpleGrid>
</Container>
Expand Down

0 comments on commit 3e84fe7

Please sign in to comment.