Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dev #702

Closed
wants to merge 4 commits into from
Closed

Dev #702

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
REACT_APP_GITHUB_TOKEN = "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"
GITHUB_USERNAME = "MuLIAICHI"
USE_GITHUB_DATA = "true"
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,11 @@

# misc
.DS_Store
.env
.env.local
.env.development.local
.env.test.local
.env.production.local

.env
npm-debug.log*
yarn-debug.log*
yarn-error.log*
Expand Down
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
# This file is the main docker file configurations

# Official Node JS runtime as a parent image
FROM node:10.16.0-alpine
# Use a more recent LTS version of Node.js
FROM node:16-alpine

# Set the working directory to ./app
WORKDIR /app

# Install app dependencies
# A wildcard is used to ensure both package.json AND package-lock.json are copied
# where available (npm@5+)
COPY package.json ./
COPY package*.json ./

RUN apk add --no-cache git

# Install any needed packages
RUN npm install

# Audit fix npm packages
RUN npm audit fix
#RUN npm audit fix

# Bundle app source
COPY . /app
Expand Down
Binary file added src/assets/images/applied-data-science-lab.png
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/docuMindsLogo.png
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/freelancerLogo.png
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/ibnTahirLogo.png
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/onssaLogo.png
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/peoplePerHourLogo.png
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/schoolOfInfoSciLogo.jpg
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/schoolTextAnalysisLogo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/assets/lottie/Animation.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions src/assets/lottie/splash.json

Large diffs are not rendered by default.

6,341 changes: 6,340 additions & 1 deletion src/assets/lottie/splashAnimation.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/components/footer/Footer.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export default function Footer() {
<Fade bottom duration={1000} distance="5px">
<div className="footer-div">
<p className={isDark ? "dark-mode footer-text" : "footer-text"}>
{emoji("Made with ❤️ by DeveloperFolio Team")}
{emoji("Customized with ❤️ by MuLIAICHI")}
</p>
<p className={isDark ? "dark-mode footer-text" : "footer-text"}>
Theme by{" "}
Expand Down
2 changes: 1 addition & 1 deletion src/containers/greeting/Greeting.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React, {useContext} from "react";
import {Fade} from "react-reveal";
import emoji from "react-easy-emoji";
import "./Greeting.scss";
import landingPerson from "../../assets/lottie/landingPerson";
import landingPerson from "../../assets/lottie/splash";
import DisplayLottie from "../../components/displayLottie/DisplayLottie";
import SocialMedia from "../../components/socialMedia/SocialMedia";
import Button from "../../components/button/Button";
Expand Down
2 changes: 1 addition & 1 deletion src/containers/skills/Skills.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import "./Skills.scss";
import SoftwareSkill from "../../components/softwareSkills/SoftwareSkill";
import {illustration, skillsSection} from "../../portfolio";
import {Fade} from "react-reveal";
import codingPerson from "../../assets/lottie/codingPerson";
import codingPerson from "../../assets/lottie/Animation";
import DisplayLottie from "../../components/displayLottie/DisplayLottie";
import StyleContext from "../../contexts/StyleContext";

Expand Down
Loading
Loading