SANDRAMSC commited on
Commit
6c7ab14
1 Parent(s): cdd3aa1

Changed logo

Browse files
frontend/index.html CHANGED
@@ -5,7 +5,7 @@
5
  <link
6
  rel="icon"
7
  type="image/svg+xml"
8
- href="./src/assets/icon.ico"
9
  />
10
  <!-- href="/vite.svg" -->
11
  <meta
 
5
  <link
6
  rel="icon"
7
  type="image/svg+xml"
8
+ href="./src/assets/logo.png"
9
  />
10
  <!-- href="/vite.svg" -->
11
  <meta
frontend/src/assets/logo.png ADDED
frontend/src/assets/verified-symbol-icon.png:Zone.Identifier ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ [ZoneTransfer]
2
+ ZoneId=3
3
+ ReferrerUrl=https://uxwing.com/wp-content/themes/uxwing/download/arts-graphic-shapes/verified-symbol-icon.png
4
+ HostUrl=https://uxwing.com/wp-content/themes/uxwing/download/arts-graphic-shapes/verified-symbol-icon.png
frontend/src/components/Footer.tsx CHANGED
@@ -1,4 +1,6 @@
1
- import { LogoIcon } from "./Icons";
 
 
2
 
3
  export const Footer = () => {
4
  return (
@@ -11,8 +13,14 @@ export const Footer = () => {
11
  href="/"
12
  className="font-bold text-xl flex"
13
  >
14
- <LogoIcon />
15
- DocVerifyRAG
 
 
 
 
 
 
16
  </a>
17
  </div>
18
 
 
1
+ import LogoIcon from "../assets/logo.png";
2
+
3
+ interface FeatureProps { image: string; } const features: FeatureProps[] = [ { image: LogoIcon, }, ];
4
 
5
  export const Footer = () => {
6
  return (
 
13
  href="/"
14
  className="font-bold text-xl flex"
15
  >
16
+ {features.map(({ image }: FeatureProps) => (
17
+
18
+ <img
19
+ src={LogoIcon}
20
+ alt="About feature"
21
+ className="w-[18px] lg:w-[28px] mx-2"
22
+ />
23
+ ))} DocVerifyRAG
24
  </a>
25
  </div>
26
 
frontend/src/components/Icons.tsx CHANGED
@@ -1,28 +1,3 @@
1
- export const LogoIcon = () => {
2
- return (
3
- <svg
4
- xmlns="http://www.w3.org/2000/svg"
5
- viewBox="0 0 24 24"
6
- fill="none"
7
- stroke="currentColor"
8
- strokeWidth="2"
9
- strokeLinecap="round"
10
- strokeLinejoin="round"
11
- className="lucide lucide-panels-top-left mr-2 w-6 h-6"
12
- >
13
- <rect
14
- width="18"
15
- height="18"
16
- x="3"
17
- y="3"
18
- rx="2"
19
- />
20
- <path d="M3 9h18" />
21
- <path d="M9 21V9" />
22
- </svg>
23
- );
24
- };
25
-
26
  export const MedalIcon = () => {
27
  return (
28
  <svg
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  export const MedalIcon = () => {
2
  return (
3
  <svg
frontend/src/components/Navbar.tsx CHANGED
@@ -1,5 +1,6 @@
1
  import { useState } from "react";
2
  import { Button } from "./ui/button";
 
3
  import { buttonVariants } from "./ui/button";
4
  import {
5
  NavigationMenu,
@@ -15,13 +16,22 @@ import {
15
  } from "@/components/ui/sheet";
16
  import { Menu } from "lucide-react";
17
  import { ModeToggle } from "./mode-toggle";
18
- import { LogoIcon } from "./Icons";
19
 
20
  interface RouteProps {
21
  href: string;
22
  label: string;
23
  }
24
 
 
 
 
 
 
 
 
 
 
 
25
  const routeList: RouteProps[] = [
26
  {
27
  href: "#features",
@@ -44,9 +54,14 @@ export const Navbar = () => {
44
  href="/"
45
  className="ml-2 font-bold text-xl flex"
46
  >
47
- <LogoIcon />
48
- DocVerifyRAG
49
- </a>
 
 
 
 
 
50
  </NavigationMenuItem>
51
 
52
  {/* mobile */}
 
1
  import { useState } from "react";
2
  import { Button } from "./ui/button";
3
+ import LogoIcon from "../assets/logo.png";
4
  import { buttonVariants } from "./ui/button";
5
  import {
6
  NavigationMenu,
 
16
  } from "@/components/ui/sheet";
17
  import { Menu } from "lucide-react";
18
  import { ModeToggle } from "./mode-toggle";
 
19
 
20
  interface RouteProps {
21
  href: string;
22
  label: string;
23
  }
24
 
25
+ interface FeatureProps {
26
+ image: string;
27
+ }
28
+
29
+ const features: FeatureProps[] = [
30
+ {
31
+ image: LogoIcon,
32
+ },
33
+ ];
34
+
35
  const routeList: RouteProps[] = [
36
  {
37
  href: "#features",
 
54
  href="/"
55
  className="ml-2 font-bold text-xl flex"
56
  >
57
+ {features.map(({ image }: FeatureProps) => (
58
+
59
+ <img
60
+ src={LogoIcon}
61
+ alt="About feature"
62
+ className="w-[18px] lg:w-[28px] mx-2"
63
+ />
64
+ ))}DocVerifyRAG</a>
65
  </NavigationMenuItem>
66
 
67
  {/* mobile */}