created components, routing and applied styles

This commit is contained in:
2024-04-15 15:26:22 +05:30
parent 00d7c75564
commit edd2798581
69 changed files with 4006 additions and 845 deletions
+20 -3
View File
@@ -1,15 +1,32 @@
import { NgModule } from '@angular/core';
import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { AppComponent } from './app.component';
import { ContactSidebarComponent } from './contact-sidebar/contact-sidebar.component';
import { NavbarComponent } from './navbar/navbar.component';
import { AboutComponent } from './about/about.component';
import { ResumeComponent } from './resume/resume.component';
import { PortfolioComponent } from './portfolio/portfolio.component';
import { BlogComponent } from './blog/blog.component';
import { ContactComponent } from './contact/contact.component';
import { AppRoutingModule } from './app-routing.module';
@NgModule({
declarations: [
AppComponent
AppComponent,
ContactSidebarComponent,
NavbarComponent,
AboutComponent,
ResumeComponent,
PortfolioComponent,
BlogComponent,
ContactComponent
],
imports: [
BrowserModule
BrowserModule,
AppRoutingModule
],
schemas: [CUSTOM_ELEMENTS_SCHEMA],
providers: [],
bootstrap: [AppComponent]
})