Files
hurler-webdesign-saas/src/app/features/landing/pages/landingpage.component.ts

41 lines
1.7 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import { Component, OnInit, inject } from '@angular/core';
import { NavigationComponent } from '../components/navigation/navigation.component';
import { HeroComponent } from '../components/hero/hero.component';
import { StatsComponent } from '../components/stats/stats.component';
import { FeaturesSectionComponent } from '../components/features-section/features-section.component';
import { TestimonialsComponent } from '../components/testimonials/testimonials.component';
import { ProjectsComponent } from '../components/projects/projects.component';
import { PricingComponent } from '../components/pricing/pricing.component';
import { ContactComponent } from '../components/contact/contact.component';
import { FooterComponent } from '../components/footer/footer.component';
import { SeoService } from '@core/services/seo.service';
@Component({
selector: 'app-landingpage',
imports: [
NavigationComponent,
HeroComponent,
StatsComponent,
FeaturesSectionComponent,
TestimonialsComponent,
ProjectsComponent,
PricingComponent,
ContactComponent,
FooterComponent,
],
templateUrl: './landingpage.component.html',
styleUrl: './landingpage.component.scss',
})
export class LandingpageComponent implements OnInit {
private seo = inject(SeoService);
ngOnInit(): void {
this.seo.updateMetadata({
title: 'Schnelle Webseiten für Handwerk & Vereine',
description: 'Spezialist für schnelle Webseiten ohne WordPress für Handwerk & Vereine. Wir bieten maßgeschneidertes Webdesign für eine schnelle und sichere Online-Präsenz.',
socialsDescription: 'Webdesign ohne WordPress | Hurler Webdesign Nördlingen',
type: 'website'
});
}
}