$Full Stack Developer
I build modern web experiences
Senior .NET and Angular developer with 8 years of experience crafting elegant, efficient, and scalable applications.
Tech Stack
Angular
.NET Core
TypeScript
C#
Tailwind CSS
SQL Server
import { Component, OnInit } from '@angular/core'; @Component({ selector: 'app-portfolio', templateUrl: './portfolio.component.html', styleUrls: ['./portfolio.component.scss'] }) export class PortfolioComponent implements OnInit { title = 'Full Stack Developer'; experience = 8; skills = ['Angular', '.NET', 'C#', 'TypeScript']; constructor() { } ngOnInit(): void { // Initialize portfolio data this.loadProjects(); } loadProjects(): void { // Fetch projects from API console.log('Loading amazing projects...'); } }