Skip to content

Commit

Permalink
Update package version and add new pages
Browse files Browse the repository at this point in the history
  • Loading branch information
mirkan1 committed Feb 10, 2024
1 parent 9574265 commit 2e9234c
Show file tree
Hide file tree
Showing 8 changed files with 7,121 additions and 6,850 deletions.
13,908 changes: 7,081 additions & 6,827 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mirkan1portfolio",
"version": "0.1.3",
"version": "0.1.4",
"homepage": "https://mirkan1.github.io/mirkan1portfolio",
"private": true,
"engines": {
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions src/pages/Resume.js → src/pages/Resume.jsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import pdf_file from "../pdf/Renas_Kilic_Resume_2023.pdf";
import React, { Component } from 'react';
import { pdfjs } from "react-pdf"; // Document, Page
//import { pdfjs } from "react-pdf"; // Document, Page
import styled from 'styled-components';
pdfjs.GlobalWorkerOptions.workerSrc = `//cdnjs.cloudflare.com/ajax/libs/pdf.js/${pdfjs.version}/pdf.worker.js`;
// pdfjs.GlobalWorkerOptions.workerSrc = `//cdnjs.cloudflare.com/ajax/libs/pdf.js/${pdfjs.version}/pdf.worker.js`;


const Styles = styled.div`
Expand Down
57 changes: 37 additions & 20 deletions src/pages/Work.js → src/pages/Work.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,17 @@ import { Badge } from "react-bootstrap";
import styled from 'styled-components';

const Styles = styled.div`
.title {
}
.language {
font-size: 12px!important;
font-weight: bold!important;
text-align: end;
}
.info {
}
.badge-parent {
display: flex;
justify-content: flex-end;
Expand Down Expand Up @@ -50,7 +61,7 @@ const Styles = styled.div`
}
& > h4 {
color: #cbad09; //#F7D51D;
color: #e5c30a;
font-weight: normal;
font-size: 12px;
letter-spacing: 0.4px;
Expand All @@ -76,15 +87,21 @@ const Styles = styled.div`
}
`;

const projects = [
const projects = [
{
title: "Stable Diffusion Paint",
subInfo: "AI backed paint application",
language: "Python",
link: "https://github.com/mirkan1/SdPaint",
info: ["I found this app on reddit then started to write on it, it is really awesome and still being meanted by me and my friend",
"I am planning to add more features to it, like saving your work, adding more colors, adding more brushes, adding more tools, adding more filters, adding more effects, adding more everything",
],
info: ["I have been working on this project for a while, I am using Python and stable diffusion."],
date: "2024"
},
{
title: "Datareporter",
subInfo: "Data reporting app",
language: "Python, Nodejs, React",
link: "https://github.com/dataminelab/datareporter",
info: ["I have been working on this project for a while, I have been using Python, Nodejs and React. I have been using Python for data processing, Nodejs for backend and React for frontend. I have been using Docker for deployment."],
date: "2023"
},
{
Expand Down Expand Up @@ -197,21 +214,21 @@ const workPattern = (props, index) => {
const encodedInfo = props.info.map(i => infoPatternEncode(i));
return (
<Styles>
<div className="myBox myBox--light" style={{fontFamily: "Ubuntu"}} key={index}>
<div className="badge-parent">
<Badge className="badge-fix" variant="warning">{props.date}</Badge>
</div>
<h3>{props.title}</h3>
<h4>{props.language}</h4>
<h5>{props.subInfo}</h5>
{encodedInfo}
<a
className="source-button pixel-borders pixel-box--warning hvr-underline-from-left"
href={props.link}
target="_blank"
rel="noopener noreferrer">
Source Code</a>
</div>
<div className="myBox myBox--light" style={{fontFamily: "Ubuntu"}} key={index}>
<div className="badge-parent">
<Badge className="badge-fix" variant="warning">{props.date}</Badge>
</div>
<h3 className="title" >{props.title}</h3>
<h4 className="language">{props.language}</h4>
<h5 className="info">{props.subInfo}</h5>
{encodedInfo}
<a
className="source-button pixel-borders pixel-box--warning hvr-underline-from-left"
href={props.link}
target="_blank"
rel="noopener noreferrer">
Source Code</a>
</div>
</Styles>
)
}
Expand Down

0 comments on commit 2e9234c

Please sign in to comment.