Skip to content

Commit

Permalink
Merge pull request #148 from horuslabsio/Chore-update-logo
Browse files Browse the repository at this point in the history
Chore: update logo
  • Loading branch information
Darlington02 authored Aug 31, 2024
2 parents 90eaf55 + 9672c5b commit b9f2af6
Show file tree
Hide file tree
Showing 11 changed files with 8 additions and 39 deletions.
Binary file added frontend/public/assets/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added frontend/public/assets/mobile-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 0 additions & 14 deletions frontend/public/assets/mobile-logo.svg

This file was deleted.

5 changes: 2 additions & 3 deletions frontend/src/app/address-book/page.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"use client";
import { useEffect, useState } from "react";
import logoImage from "public/assets/logo.svg";
import addressBookResources from "public/address-book.json"
import logoImage from "public/assets/logo.png";
import addressBookResources from "public/address-book.json";
import { useDebounce } from "../components/internal/hooks/useDebounce";
import Image from "next/image";
import AddressTable from "./address-table";
Expand All @@ -11,7 +11,6 @@ import useTheme from "../components/internal/hooks/useTheme";
import ThemeSwitch from "../components/internal/util/ThemeSwitch";
import { searchResources } from "../components/internal/helpers";


export interface AddressBookResource {
id: string;
name: string;
Expand Down
6 changes: 3 additions & 3 deletions frontend/src/app/components/internal/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,15 +46,15 @@ const Header = () => {
<div className="hidden w-[18.75rem] md:block">
<Link href={"/"}>
<img
src="/assets/logo.svg"
src="/assets/logo.png"
alt="logo"
className="h-full w-full"
/>
</Link>
</div>

<Link href={"/"} className="block md:hidden">
<img src="/assets/mobile-logo.svg" alt="" />
<Link href={"/"} className="block h-[35px] w-[35px] md:hidden">
<img src="/assets/mobile-logo.png" alt="" />
</Link>
<div className="relative">
{address ? (
Expand Down
Binary file modified frontend/src/app/favicon.ico
Binary file not shown.
5 changes: 2 additions & 3 deletions frontend/src/app/wikipedia/page.tsx
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
"use client";
import Image from "next/image";
import logoImage from "../../../public/assets/logo.svg";
import logoImage from "../../../public/assets/logo.png";
import { useEffect, useState } from "react";
import Filter from "./filter";
import Resources from "./resources";
import { useDebounce } from "../components/internal/hooks/useDebounce";
import wikipediaResources from "../../../public/wikipedia.json"
import wikipediaResources from "../../../public/wikipedia.json";
import Search from "public/svg/Search";
import Link from "next/link";
import useTheme from "../components/internal/hooks/useTheme";
import ThemeSwitch from "../components/internal/util/ThemeSwitch";
import { searchResources } from "../components/internal/helpers";


interface WikipediaResource {
id: string;
name: string;
Expand Down
2 changes: 1 addition & 1 deletion website/app/components/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const Navbar = () => {
return (
<header className="max-w-[2000px] left-1/2 -translate-x-1/2 absolute w-screen top-0 z-[99] flex justify-between px-5 md:px-12 py-6">
<div className="inline-block w-[55vw] max-w-[300px] md:w-[30vw] lg:w-[20vw]">
<img src="/logo.svg" alt="starknet scaffold" />
<img src="/logo.png" alt="starknet scaffold" />
</div>

<button
Expand Down
Binary file modified website/app/favicon.ico
Binary file not shown.
Binary file added website/public/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 0 additions & 15 deletions website/public/logo.svg

This file was deleted.

0 comments on commit b9f2af6

Please sign in to comment.