Skip to content

Commit

Permalink
Art project added
Browse files Browse the repository at this point in the history
  • Loading branch information
AHReccese committed Feb 7, 2024
1 parent 434ce6d commit 87ff6d1
Show file tree
Hide file tree
Showing 3 changed files with 47 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/Assets/Images/projects/art/art.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
33 changes: 33 additions & 0 deletions src/Views/Pages/Home/Sections/Section3/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,14 @@
}
}
}

&.art {
g:nth-of-type(1) {
path {
fill: black !important;
}
}
}
}
}
}
Expand Down Expand Up @@ -387,6 +395,14 @@
@apply h-20 my-14;
}

&.art {
@apply h-20 my-14;
}

&.samila {
@apply h-32 my-14;
}

&:not(.pycm) {
@apply transform scale-125;
}
Expand Down Expand Up @@ -434,6 +450,14 @@
}
}
}

&.art {
g:nth-of-type(1) {
path {
fill: white !important;
}
}
}
}
}

Expand All @@ -445,6 +469,15 @@
@apply text-primary;
}
}

&.art {
g:nth-of-type(1) {
path {
fill: black !important;
}
}
}

}

@include down(550px) {
Expand Down
13 changes: 13 additions & 0 deletions src/Views/Pages/Home/Sections/Section3/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ import { ReactComponent as PYMILOHorizontal } from '@assets/Images/projects/pymi
import { ReactComponent as Nava } from '@assets/Images/projects/nava/nava.svg';
import { ReactComponent as PyRGG } from '@assets/Images/projects/pyrgg/pyrgg.svg';
import { ReactComponent as Samila } from '@assets/Images/projects/samila/samila.svg';
import { ReactComponent as Art } from '@assets/Images/projects/art/art.svg';

type ReposInfos = { [key: string]: { forks: number; stars: number } };

Expand Down Expand Up @@ -238,4 +239,16 @@ const projects = [
lastRelease: 'https://github.com/sepandhaghighi/samila/releases/tag/v1.1',
description: `Samila is a generative art generator written in Python, Samila lets you create images based on many thousand points. The position of every single point is calculated by a formula, which has random parameters. Because of the random numbers, every image looks different.`,
},
{
title: 'Art',
repoName: 'art',
logo: Art,
account: 'sepandhaghighi',
github: 'https://github.com/sepandhaghighi/art',
webLink: 'https://www.ascii-art.site',
forkPage: 'https://github.com/sepandhaghighi/art/forks',
starsPage: 'https://github.com/sepandhaghighi/art/forks',
lastRelease: 'https://github.com/sepandhaghighi/art/releases/tag/v6.1',
description: `ASCII art is also known as "computer text art". It involves the smart placement of typed special characters or letters to make a visual shape that is spread over multiple lines of text. ART is a Python lib for text converting to ASCII art fancy.`,
},
];

0 comments on commit 87ff6d1

Please sign in to comment.