reza change fav icon

temp
Reza_ashrafi 3 years ago
parent e6e365d6df
commit 34cc930fb4
  1. 10
      public/index.html
  2. 8
      public/logo.svg
  3. 6
      src/components/Navbar/index.js
  4. 2
      src/views/Orders/components/Order.js
  5. 2
      src/views/Orders/index.js

@ -2,19 +2,19 @@
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
<link rel="icon" href="%PUBLIC_URL%/logo.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta
name="description"
content="Web site created using create-react-app"
content="فروشگاه کتاب کمک آموزشی دانوین"
/>
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo.svg" />
<!--
manifest.json provides metadata used when your web app is installed on a
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
-->
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
<!-- <link rel="manifest" href="%PUBLIC_URL%/manifest.json" /> -->
<!--
Notice the use of %PUBLIC_URL% in the tags above.
It will be replaced with the URL of the `public` folder during the build.
@ -24,7 +24,7 @@
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->
<title>React App</title>
<title>دانوین</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 18 KiB

@ -218,7 +218,7 @@ function Navbar({
{/* <span className="text-sm font-normal text-blue52">
انتخاب کشور
</span> */}
<Link to="/dashboard" className="text-sm font-normal text-blue52">
<Link to="/orders" className="text-sm font-normal text-blue52">
پیگیری سفارش
</Link>
</div>
@ -228,7 +228,7 @@ function Navbar({
ورود و ثبت نام
</Link>
)}
<Link to="/dashboard" className="text-sm font-normal text-blue52">
<Link to="#" className="text-sm font-normal text-blue52">
شکایات&nbsp;
</Link>
</div>
@ -354,7 +354,7 @@ Navbar.defaultProps = {
name: "درباره ما",
},
{
link: "/dashboard",
link: "/orders",
name: "پیگیری",
},
{

@ -20,7 +20,7 @@ const status = {
function Order({ order, isMobile }) {
return (
<div className="w-full flex flex-col rounded-md overflow-hidden my-3 border border-solid border-blueFF1 dark:border-bluec0 dark:border-opacity-10">
<div className="w-full flex flex-col rounded-md overflow-hidden my-3 border border-solid border-blueFF1 dark:border-bluec0 dark:border-opacity-10 lg:w-3/5 mx-auto">
<div className="flex flex-row w-full justify-between items-center p-3 bg-blueFF1 dark:bg-blueC0 dark:bg-opacity-10">
<strong className="font-medium text-sm lg:text-tiny text-blue52 dark:text-white">
{_.join(["شماره سفارش:", order.number], " ")}

@ -10,7 +10,7 @@ function Orders({ orders, headerOptions, setHeaderOptions }) {
setHeaderOptions(headerOptions);
}, []);
return (
<div className="flex flex-col px-4">
<div className="flex flex-col px-4 lg:pb-20">
{orders.map((order, index) => (
<Order order={order} key={index} />
))}

Loading…
Cancel
Save