Skip to content

Commit

Permalink
removing duplicate files (#185)
Browse files Browse the repository at this point in the history
* removing duplicate files

* refactor: returned missing files

---------

Co-authored-by: felixNyalenda <[email protected]>
Co-authored-by: Sonia Lomo <[email protected]>
Co-authored-by: sonylomo <[email protected]>
  • Loading branch information
4 people authored Jul 18, 2024
1 parent 8474c2d commit 48c7940
Show file tree
Hide file tree
Showing 15 changed files with 24 additions and 60 deletions.
20 changes: 10 additions & 10 deletions src/assets/images/podcast/index.js
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
import Balogun from "./balogun.png";
import Jean from "./jean_opiyo.png";
import Kristin from "./kristin.png";
import Melody from "./melody.png";
import podImage1 from "./podImage1.png";
import podImage2 from "./podImage2.png";
import RichardMulandi from "./richard_mulandi.png";
import Balogun from "./balogun.png";
import Saruni from "./saruni.png";
import Jean from "./jean_opiyo.png";
import Vivian from "./vivian.png";
import Melody from "./melody.png";
import Kristin from "./kristin.png";

export {
podImage1,
podImage2,
RichardMulandi,
Balogun,
Saruni,
Jean,
Vivian,
Melody,
Kristin,
Melody,
RichardMulandi,
Saruni,
Vivian,
podImage1,
podImage2,
};
6 changes: 0 additions & 6 deletions src/assets/images/services-section/index.js

This file was deleted.

2 changes: 1 addition & 1 deletion src/assets/images/socials/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ import twitter from "./twitter.svg";
import youtube from "./youtube.svg";

export {
linkedin, facebook, twitter, instagram, spotify, youtube
linkedin, facebook, twitter, instagram, spotify, youtube
};

2 changes: 2 additions & 0 deletions src/assets/images/testimonialSection/.picasa.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[Picasa]
name=testimonialSection
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import regan from "./regan_codes.jpeg";
import wayne from "./wayne_gakuo.jpeg";
import aibunny from "./ai_bunny.jpeg";
import harun from "./juma_harun.jpeg";
import wakio from "./pithoneer.jpeg";
import tony from "./tony_k.jpeg";
import regan from "./regan_codes.jpeg";
import singh from "./singh.jpeg";
import harun from "./juma_harun.jpeg";
import tony from "./tony_k.jpeg";
import wayne from "./wayne_gakuo.jpeg";

export { regan, wayne, aibunny, wakio, tony, singh, harun };
export { aibunny, harun, regan, singh, tony, wakio, wayne };
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/images/testimonialSection/singh.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/images/testimonialSection/tony_k.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
39 changes: 3 additions & 36 deletions src/pages/landingPage/data.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import {
gdg,
spheron,
mastercraft,
} from "@/assets/images/hero-section";
} from "../../assets/images/hero-section";

import {
RichardMulandi,
Expand All @@ -23,13 +23,7 @@ import {
Jean,
Melody,
Kristin,
} from "@/assets/images/podcast";

import {
mentorship,
openSource,
twitter,
} from "@/assets/images/services-section";
} from "../../assets/images/podcast";

import {
aibunny,
Expand All @@ -39,7 +33,7 @@ import {
tony,
wakio,
wayne,
} from "@/assets/testimonialSection";
} from "../../assets/images/testimonialSection";

export const podcasts = [
{
Expand Down Expand Up @@ -244,33 +238,6 @@ export const testimonialData = [
},
];

export const services = [
{
id: 1,
img: twitter,
title: "Weekly Twitter Spaces",
description:
"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",
link: "https://x.com/SpaceYaTech",
},
{
id: 2,
img: openSource,
title: "Open-Source Projects",
description:
"We run full-stack, open-source projects, where UI/UX designers, developers and dev-ops engineers work together.",
link: "https://spaceyatech.github.io/CoLabs/",
},
{
id: 3,
img: mentorship,
title: "Mentorship Programs",
description:
"We host community-led mentorship programs where beginners are mentored by experienced professionals and given guidance on getting started in tech.",
link: "https://x.com/SpaceYaTech",
},
];

export const whatWeDoData = [
{
id: 1,
Expand Down
3 changes: 2 additions & 1 deletion src/pages/landingPage/sections/CTASection.jsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
/* eslint-disable import/extensions */
/* eslint-disable import/no-unresolved */
import React, { useState } from "react";
import { bannerImg } from "../../../assets/images/hero-section";
import JoinSYTModal from "../../community/sections/JoinSYTModal";
import { bannerImg } from "@/assets/images/hero-section";
// import { bannerImg } from "../assets/images/hero-section";

function CTASection() {
const [isOpen, setIsOpen] = useState(false);
Expand Down
2 changes: 1 addition & 1 deletion vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export default defineConfig(({ mode }) => {
},
plugins: [million.vite({ auto: true }), react()],
test: {
include: ["src/**/*.test.js"],
include: ["src/**/*.test.js"],
},
server: {
watch: {
Expand Down

0 comments on commit 48c7940

Please sign in to comment.