Skip to content

Commit

Permalink
update navbar logo
Browse files Browse the repository at this point in the history
  • Loading branch information
AykutSarac committed Sep 10, 2024
1 parent 0786a5d commit f49e7d9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
Binary file added public/assets/todiagram_logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 8 additions & 3 deletions src/layout/Navbar.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from "react";
import Link from "next/link";
import { Button } from "@mantine/core";
import { Button, Flex, Image, Stack } from "@mantine/core";
import styled from "styled-components";
import { JSONCrackLogo } from "./JsonCrackLogo";

Expand Down Expand Up @@ -43,7 +43,6 @@ const Center = styled.div`
gap: 6px;
align-items: center;
white-space: nowrap;
width: 100%;
justify-content: center;
@media only screen and (max-width: 768px) {
Expand All @@ -56,7 +55,13 @@ export const Navbar = () => {
<StyledNavbarWrapper className="navbar">
<StyledNavbar>
<Left>
<JSONCrackLogo fontSize="1.2rem" />
<Stack gap="0">
<JSONCrackLogo fontSize="1.2rem" />
<Flex justify="right" align="center" gap="4" fz="8" fw="500" c="black">
from
<Image src="/assets/todiagram_logo.png" alt="Todiagram Logo" w={60} />
</Flex>
</Stack>
</Left>
<Center>
<Button
Expand Down

0 comments on commit f49e7d9

Please sign in to comment.