Skip to content

Commit 48c7940

Browse files
mingabire809Ase020sonylomo
authored
removing duplicate files (#185)
* removing duplicate files * refactor: returned missing files --------- Co-authored-by: felixNyalenda <felixasejunior@gmail.com> Co-authored-by: Sonia Lomo <49971500+sonylomo@users.noreply.github.com> Co-authored-by: sonylomo <sonylomo1@gmail.com>
1 parent 8474c2d commit 48c7940

File tree

15 files changed

+24
-60
lines changed

15 files changed

+24
-60
lines changed

src/assets/images/podcast/index.js

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1+
import Balogun from "./balogun.png";
2+
import Jean from "./jean_opiyo.png";
3+
import Kristin from "./kristin.png";
4+
import Melody from "./melody.png";
15
import podImage1 from "./podImage1.png";
26
import podImage2 from "./podImage2.png";
37
import RichardMulandi from "./richard_mulandi.png";
4-
import Balogun from "./balogun.png";
58
import Saruni from "./saruni.png";
6-
import Jean from "./jean_opiyo.png";
79
import Vivian from "./vivian.png";
8-
import Melody from "./melody.png";
9-
import Kristin from "./kristin.png";
1010

1111
export {
12-
podImage1,
13-
podImage2,
14-
RichardMulandi,
1512
Balogun,
16-
Saruni,
1713
Jean,
18-
Vivian,
19-
Melody,
2014
Kristin,
15+
Melody,
16+
RichardMulandi,
17+
Saruni,
18+
Vivian,
19+
podImage1,
20+
podImage2,
2121
};

src/assets/images/services-section/index.js

Lines changed: 0 additions & 6 deletions
This file was deleted.

src/assets/images/socials/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ import twitter from "./twitter.svg";
66
import youtube from "./youtube.svg";
77

88
export {
9-
linkedin, facebook, twitter, instagram, spotify, youtube
9+
linkedin, facebook, twitter, instagram, spotify, youtube
1010
};
1111

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[Picasa]
2+
name=testimonialSection
Loading
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
import regan from "./regan_codes.jpeg";
2-
import wayne from "./wayne_gakuo.jpeg";
31
import aibunny from "./ai_bunny.jpeg";
2+
import harun from "./juma_harun.jpeg";
43
import wakio from "./pithoneer.jpeg";
5-
import tony from "./tony_k.jpeg";
4+
import regan from "./regan_codes.jpeg";
65
import singh from "./singh.jpeg";
7-
import harun from "./juma_harun.jpeg";
6+
import tony from "./tony_k.jpeg";
7+
import wayne from "./wayne_gakuo.jpeg";
88

9-
export { regan, wayne, aibunny, wakio, tony, singh, harun };
9+
export { aibunny, harun, regan, singh, tony, wakio, wayne };
Loading
Loading
Loading
53.9 KB
Loading
41.1 KB
Loading
Loading

src/pages/landingPage/data.js

Lines changed: 3 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import {
1313
gdg,
1414
spheron,
1515
mastercraft,
16-
} from "@/assets/images/hero-section";
16+
} from "../../assets/images/hero-section";
1717

1818
import {
1919
RichardMulandi,
@@ -23,13 +23,7 @@ import {
2323
Jean,
2424
Melody,
2525
Kristin,
26-
} from "@/assets/images/podcast";
27-
28-
import {
29-
mentorship,
30-
openSource,
31-
twitter,
32-
} from "@/assets/images/services-section";
26+
} from "../../assets/images/podcast";
3327

3428
import {
3529
aibunny,
@@ -39,7 +33,7 @@ import {
3933
tony,
4034
wakio,
4135
wayne,
42-
} from "@/assets/testimonialSection";
36+
} from "../../assets/images/testimonialSection";
4337

4438
export const podcasts = [
4539
{
@@ -244,33 +238,6 @@ export const testimonialData = [
244238
},
245239
];
246240

247-
export const services = [
248-
{
249-
id: 1,
250-
img: twitter,
251-
title: "Weekly Twitter Spaces",
252-
description:
253-
"We host weekly Twitter Spaces every Thursday between 8 p.m and 10 p.m EAT, where industry experts talk about various topics and upcoming tech events",
254-
link: "https://x.com/SpaceYaTech",
255-
},
256-
{
257-
id: 2,
258-
img: openSource,
259-
title: "Open-Source Projects",
260-
description:
261-
"We run full-stack, open-source projects, where UI/UX designers, developers and dev-ops engineers work together.",
262-
link: "https://spaceyatech.github.io/CoLabs/",
263-
},
264-
{
265-
id: 3,
266-
img: mentorship,
267-
title: "Mentorship Programs",
268-
description:
269-
"We host community-led mentorship programs where beginners are mentored by experienced professionals and given guidance on getting started in tech.",
270-
link: "https://x.com/SpaceYaTech",
271-
},
272-
];
273-
274241
export const whatWeDoData = [
275242
{
276243
id: 1,

src/pages/landingPage/sections/CTASection.jsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
/* eslint-disable import/extensions */
22
/* eslint-disable import/no-unresolved */
33
import React, { useState } from "react";
4+
import { bannerImg } from "../../../assets/images/hero-section";
45
import JoinSYTModal from "../../community/sections/JoinSYTModal";
5-
import { bannerImg } from "@/assets/images/hero-section";
6+
// import { bannerImg } from "../assets/images/hero-section";
67

78
function CTASection() {
89
const [isOpen, setIsOpen] = useState(false);

vite.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export default defineConfig(({ mode }) => {
2121
},
2222
plugins: [million.vite({ auto: true }), react()],
2323
test: {
24-
include: ["src/**/*.test.js"],
24+
include: ["src/**/*.test.js"],
2525
},
2626
server: {
2727
watch: {

0 commit comments

Comments
 (0)