Spaces:
Sleeping
Sleeping
Added logo - mapped logo as image in img component
Browse files
frontend/src/components/Footer.tsx
CHANGED
@@ -16,7 +16,7 @@ export const Footer = () => {
|
|
16 |
{features.map(({ image }: FeatureProps) => (
|
17 |
|
18 |
<img
|
19 |
-
src={
|
20 |
alt="About feature"
|
21 |
className="w-[18px] lg:w-[28px] mx-2"
|
22 |
/>
|
|
|
16 |
{features.map(({ image }: FeatureProps) => (
|
17 |
|
18 |
<img
|
19 |
+
src={image}
|
20 |
alt="About feature"
|
21 |
className="w-[18px] lg:w-[28px] mx-2"
|
22 |
/>
|
frontend/src/components/HowItWorks.tsx
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
import { Card, CardContent, CardHeader, CardTitle } from "./ui/card";
|
2 |
-
import { MedalIcon, MapIcon, PlaneIcon
|
3 |
|
4 |
interface FeatureProps {
|
5 |
icon: JSX.Element;
|
|
|
1 |
import { Card, CardContent, CardHeader, CardTitle } from "./ui/card";
|
2 |
+
import { MedalIcon, MapIcon, PlaneIcon } from "../components/Icons";
|
3 |
|
4 |
interface FeatureProps {
|
5 |
icon: JSX.Element;
|
frontend/src/components/Navbar.tsx
CHANGED
@@ -57,7 +57,7 @@ export const Navbar = () => {
|
|
57 |
{features.map(({ image }: FeatureProps) => (
|
58 |
|
59 |
<img
|
60 |
-
src={
|
61 |
alt="About feature"
|
62 |
className="w-[18px] lg:w-[28px] mx-2"
|
63 |
/>
|
|
|
57 |
{features.map(({ image }: FeatureProps) => (
|
58 |
|
59 |
<img
|
60 |
+
src={image}
|
61 |
alt="About feature"
|
62 |
className="w-[18px] lg:w-[28px] mx-2"
|
63 |
/>
|