major update angular

This commit is contained in:
2026-03-11 20:58:58 +01:00
parent 79c71fcf45
commit 1294f0f07c
27 changed files with 965 additions and 433 deletions

View File

@@ -1,4 +1,5 @@
<app-navigation></app-navigation>
<app-hero></app-hero>
<app-features-section></app-features-section>
<app-projects></app-projects>
<app-footer></app-footer>

View File

@@ -3,6 +3,7 @@ import { NavigationComponent } from '../components/navigation/navigation.compone
import { HeroComponent } from '../components/hero/hero.component';
import { FeaturesSectionComponent } from '../components/features-section/features-section.component';
import { FooterComponent } from '../components/footer/footer.component';
import { ProjectsComponent } from '../components/projects/projects.component';
import { SeoService } from '@core/services/seo.service';
@Component({
@@ -11,8 +12,9 @@ import { SeoService } from '@core/services/seo.service';
NavigationComponent,
HeroComponent,
FeaturesSectionComponent,
FooterComponent
],
ProjectsComponent,
FooterComponent,
],
templateUrl: './landingpage.component.html',
styleUrl: './landingpage.component.scss',
})