diff --git a/README.md b/README.md index d3ccd32..9a27721 100644 --- a/README.md +++ b/README.md @@ -12,11 +12,11 @@ The repository is a part of the [Montelibero Organization](https://github.com/mo - [Radix Themes](https://www.radix-ui.com) - An open source component library optimized for fast development, easy maintenance, and accessibility. - [Tailwind CSS](https://tailwindcss.com) - A utility-first CSS framework packed with classes like flex, pt-4, text-center and rotate-90 that can be composed to build any design, directly in your markup. - [Axios](https://github.com/axios/axios) - A simple HTTP client for the browser and Node.js. -- [React icons](https://react-icons.github.io/react-icons) - A library of SVG React icons. - [JS Stellar SDK](https://github.com/stellar/js-stellar-sdk) - A JavaScript library for communicating with a Stellar Horizon server and Soroban RPC. It is used for building Stellar apps either on Node.js or in the browser, though it can be used in other environments with some tinkering. - [Zustand](https://github.com/pmndrs/zustand) - A state management library for React. - [TypeScript](https://www.typescriptlang.org) - A typed superset of JavaScript that compiles to plain JavaScript. - [Eslint](https://eslint.org) - A static and automatic code checker for your JavaScript projects. +- [Font-Awesome](https://fontawesome.com) - A library that provides scalable vector icons. ## Contributing diff --git a/app/globals.css b/app/globals.css index a80ecfc..127d3ff 100644 --- a/app/globals.css +++ b/app/globals.css @@ -1,3 +1,5 @@ +@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css"); + .blue-ribbon { border-top: 3px solid #08b5e5; } diff --git a/src/pages/Layout/layout.tsx b/src/pages/Layout/layout.tsx index 61040b3..6a8b86d 100644 --- a/src/pages/Layout/layout.tsx +++ b/src/pages/Layout/layout.tsx @@ -5,7 +5,6 @@ import { useStore } from "@/features/store"; import { Footer, Header } from "@/widgets"; import { useShallow } from "zustand/react/shallow"; import AddAccountModal from "@/widgets/shared/layouts/Header/ui/AddAccountModal"; -import Script from "next/script"; import Head from "next/head"; type Props = { @@ -51,6 +50,7 @@ const PageLayout: FC = ({ children }) => { ); }, [accounts, net, setIsAuth]); + const themeLS: string | undefined | null = isWindowDefined ? window.localStorage.getItem("theme") ? window.localStorage.getItem("theme") @@ -65,10 +65,6 @@ const PageLayout: FC = ({ children }) => { name="viewport" content="width=device-width, initial-scale=1.0" /> - Stellar Multisig @@ -98,10 +94,6 @@ const PageLayout: FC = ({ children }) => {