Skip to content

Commit

Permalink
Merge pull request #17 from Aanttrax/develop
Browse files Browse the repository at this point in the history
feat: ✨ add new project and fix empty files
  • Loading branch information
Aanttrax authored Nov 28, 2024
2 parents 95289d1 + 8a3a6ee commit f98acd3
Show file tree
Hide file tree
Showing 29 changed files with 22 additions and 13 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.0
1.0.1
Binary file added public/assets/ms-auth.webp
Binary file not shown.
Binary file removed public/assets/portfolio-1.0.0.png
Binary file not shown.
Empty file.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { IExperiences } from '@models/data.interface';
standalone: true,
imports: [CommonModule],
templateUrl: './card-experience.component.html',
styleUrl: './card-experience.component.scss',
styles: '',
})
export class CardExperienceComponent {
experience = input.required<IExperiences>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
</p>
<a
[href]="link()"
target="_blank"
class="text-quaternary font-medium mt-4 text-sm sm:text-xs md:text-sm lg:text-md xl:text-lg 2xl:text-xl"
>Visit site</a
>
Expand Down
Empty file.
2 changes: 1 addition & 1 deletion src/app/components/card-project/card-project.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { Component, ElementRef, input, OnInit, signal, viewChild } from '@angula
standalone: true,
imports: [CommonModule],
templateUrl: './card-project.component.html',
styleUrl: './card-project.component.scss',
styles: '',
animations: [
trigger('fadeIn', [
state(
Expand Down
Empty file.
2 changes: 1 addition & 1 deletion src/app/components/contact/contact.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import { EmailService } from '@services/email.service';
standalone: true,
imports: [ReactiveFormsModule, CommonModule],
templateUrl: './contact.component.html',
styleUrl: './contact.component.scss',
styles: '',
animations: [
trigger('textVariant', [
state(
Expand Down
Empty file.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { SanitizerPipe } from '@pipes/sanitizer.pipe';
standalone: true,
imports: [SanitizerPipe],
templateUrl: './experience-detail.component.html',
styleUrl: './experience-detail.component.scss',
styles: '',
})
export class ExperienceDetailComponent {
experience = input.required<IExperiences>();
Expand Down
Empty file.
2 changes: 1 addition & 1 deletion src/app/components/experience/experience.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import { DataService } from '@services/data.service';
standalone: true,
imports: [CardExperienceComponent, ExperienceDetailComponent],
templateUrl: './experience.component.html',
styleUrl: './experience.component.scss',
styles: '',
animations: [
trigger('textVariant', [
state(
Expand Down
Empty file.
2 changes: 1 addition & 1 deletion src/app/components/hero/hero.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ import { PositionComponent } from '@components/position/position.component';
standalone: true,
imports: [SpacemanComponent, PositionComponent],
templateUrl: './hero.component.html',
styleUrl: './hero.component.scss',
styles: '',
})
export class HeroComponent {}
Empty file.
2 changes: 1 addition & 1 deletion src/app/components/portfolio/portfolio.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { DataService } from '@services/data.service';
standalone: true,
imports: [CardProjectComponent],
templateUrl: './portfolio.component.html',
styleUrl: './portfolio.component.scss',
styles: '',
animations: [
trigger('textVariant', [
state(
Expand Down
Empty file.
2 changes: 1 addition & 1 deletion src/app/components/position/position.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { Component } from '@angular/core';
standalone: true,
imports: [],
templateUrl: './position.component.html',
styleUrl: './position.component.scss',
styles: '',
})
export class PositionComponent {
position = 'Software Engineer';
Expand Down
Empty file.
2 changes: 1 addition & 1 deletion src/app/components/spaceman/spaceman.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { GLTFLoader } from 'three/examples/jsm/loaders/GLTFLoader.js';
standalone: true,
imports: [],
templateUrl: './spaceman.component.html',
styleUrl: './spaceman.component.scss',
styles: '',
})
export class SpacemanComponent implements AfterViewInit {
canvasContainer = viewChild.required<ElementRef>('canvasContainer');
Expand Down
8 changes: 8 additions & 0 deletions src/app/data/portfolio.data.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,17 @@
const images = {
portfoliov1: '../assets/portfolio-1.0.0.webp',
rickMorty: '../assets/rickMorty.png',
msAuth: '../assets/ms-auth.webp',
};

export const portfolio = [
{
name: 'ms-auth',
description:
'A secure and scalable authentication microservice built with TypeScript, Express, and MongoDB. This project implements robust features such as user registration, login, token-based authentication with JWT, and password hashing using bcrypt',
image: images['msAuth'],
link: 'https://github.com/Aanttrax/ms-auth',
},
{
name: 'Portfolio-1.0.0',
description:
Expand Down
Empty file.
2 changes: 1 addition & 1 deletion src/app/pages/landing/landing.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ import { FooterComponent } from '@shared/footer/footer.component';
FooterComponent,
],
templateUrl: './landing.component.html',
styleUrl: './landing.component.scss',
styles: '',
})
export class LandingPage {}
Empty file.
2 changes: 1 addition & 1 deletion src/app/shared/footer/footer.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ import { Component } from '@angular/core';
standalone: true,
imports: [],
templateUrl: './footer.component.html',
styleUrl: './footer.component.scss',
styles: '',
})
export class FooterComponent {}
Empty file.
2 changes: 1 addition & 1 deletion src/app/shared/navbar/navbar.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { DataService } from '@services/data.service';
standalone: true,
imports: [CommonModule],
templateUrl: './navbar.component.html',
styleUrl: './navbar.component.scss',
styles: '',
})
export class NavbarComponent implements OnInit {
active = signal<string>('hero');
Expand Down

0 comments on commit f98acd3

Please sign in to comment.