-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: code cleanup, custom directives update, eslint and prettier setup;
- Loading branch information
1 parent
9eb2f69
commit e44b191
Showing
30 changed files
with
307 additions
and
265 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
.git | ||
build | ||
node_modules | ||
public | ||
package.json | ||
package-lock.json | ||
docs | ||
src/polyfills.ts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
.git | ||
build | ||
node_modules | ||
src/polyfills.ts |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
import { Component, OnInit } from '@angular/core'; | ||
import { Component } from '@angular/core'; | ||
import { AnimateOnScrollDirective, HighlightDirective } from 'src/app/shared/directives'; | ||
|
||
@Component({ | ||
standalone: true, | ||
selector: 'app-about', | ||
templateUrl: './about.component.html', | ||
styleUrls: ['./about.component.css'], | ||
imports: [HighlightDirective, AnimateOnScrollDirective], | ||
}) | ||
export class AboutComponent { | ||
constructor() {} | ||
} | ||
export class AboutComponent {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,13 @@ | ||
<section id="contacts"> | ||
<div | ||
class="section-heading" | ||
data-aos="fade-up" | ||
data-aos-duration="500" | ||
data-aos-delay="200" | ||
> | ||
<div class="section-heading" appAOS="500" [aosDelay]="200"> | ||
<div class="line1"></div> | ||
<div class="section-name"><span class="number">03. </span>My Contacts</div> | ||
<div class="line2"></div> | ||
</div> | ||
|
||
<div | ||
class="contact-me" | ||
data-aos="fade-up" | ||
data-aos-duration="500" | ||
data-aos-delay="250" | ||
> | ||
<div class="contact-me" appAOS="500" [aosDelay]="250"> | ||
<h1>I’m open to new proposals!</h1> | ||
|
||
<a | ||
href="https://www.linkedin.com/in/thespacenoodle/" | ||
class="contact-me-button highlight" | ||
>Contact me</a | ||
> | ||
<a href="https://www.linkedin.com/in/thespacenoodle/" class="contact-me-button" appHighlight>Contact me</a> | ||
</div> | ||
</section> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,11 @@ | ||
import { Component, OnInit } from '@angular/core'; | ||
import { Component } from '@angular/core'; | ||
import { AnimateOnScrollDirective, HighlightDirective } from 'src/app/shared/directives'; | ||
|
||
@Component({ | ||
standalone: true, | ||
selector: 'app-contacts', | ||
templateUrl: './contacts.component.html', | ||
styleUrls: ['./contacts.component.css'], | ||
imports: [HighlightDirective, AnimateOnScrollDirective], | ||
}) | ||
export class ContactsComponent {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
import { MyWork } from './interfaces'; | ||
|
||
export const myWorks: MyWork[] = [ | ||
{ | ||
title: 'Kherson Tours', | ||
links: { | ||
outLink: 'https://www.ntours.ks.ua', | ||
gitHub: 'https://github.com/SheogorathD/KTurism', | ||
}, | ||
text: 'This website was my wery first big project so it’s design not that good. Built with <span class="highlight">HTML</span>, <span class="highlight">CSS</span>, <span class="highlight">JS</span> and than switched to <span class="highlight">WordPress</span>.', | ||
}, | ||
{ | ||
title: 'KSU Pool', | ||
links: { | ||
outLink: 'http://test2.kspu.edu', | ||
}, | ||
text: 'KSU Pool website. My mission was to create design and frontend part of the website. Built with <span class="highlight">Angular</span> (<span class="highlight">TypeScript</span>), <span class="highlight">Angular Materal</span>, <span class="highlight">SCSS</span>.', | ||
}, | ||
{ | ||
title: 'Accessible Schedule', | ||
links: { | ||
outLink: 'https://accessible-cringe-schedule.herokuapp.com', | ||
gitHub: 'https://github.com/SheogorathD/DaySchedule', | ||
}, | ||
text: 'My personal project. Built with <span class="highlight">MERN</span> stack as my university project more like skill test. Can be used but there is better apps for such things.', | ||
}, | ||
{ | ||
title: 'Advice Generator', | ||
links: { | ||
gitHub: 'https://github.com/SheogorathD/advice-generator', | ||
}, | ||
text: 'Simple app that shows advices from <span class="highlight">Advice Slip API</span>. Built with <span class="highlight">Angular</span> and <span class="highlight">SCSS</span>.', | ||
}, | ||
{ | ||
title: 'SpaceNoodleForge', | ||
links: { | ||
outLink: '#home', | ||
gitHub: 'https://github.com/SheogorathD/SpaceNoodleForge', | ||
}, | ||
text: 'My <span class="highlight">portfolio website</span> (the one you are reading this at). Built with <span class="highlight">Angular</span> and <span class="highlight">CSS</span>.', | ||
}, | ||
{ | ||
title: 'Random Challenges', | ||
links: { | ||
outLink: 'https://randomnoodlechallenges.web.app', | ||
gitHub: 'https://github.com/SheogorathD/random-challenges', | ||
}, | ||
text: 'The idea of this project is to help developers to get more hands-on experience by completing challenges proposed by other people. Built with <span class="highlight">Angular</span>, <span class="highlight">SCSS</span> and <span class="highlight">Firebase</span>.', | ||
}, | ||
{ | ||
title: 'KSU Startups', | ||
links: { | ||
outLink: 'https://startup.kspu.edu/welcome', | ||
gitHub: 'https://github.com/SheogorathD/ksu-startups', | ||
}, | ||
text: 'My <span class="highlight">latest project</span> and my diploma project. This website will help startup founders find investors for their projects. Built with <span class="highlight">Angular</span>, <span class="highlight">NgRx</span>, <span class="highlight">SCSS</span> and <span class="highlight">Firebase</span>.', | ||
}, | ||
// { | ||
// title: '', | ||
// links: { | ||
// outLink: '', | ||
// gitHub: '', | ||
// }, | ||
// text: '', | ||
// }, | ||
]; |
Oops, something went wrong.