Updated the HTML structure and styling for a clearer, responsive layout and better user experience.
22 lines
593 B
TypeScript
22 lines
593 B
TypeScript
import {Component} from '@angular/core';
|
|
import {ScrollService} from '../scroll/scroll.service';
|
|
import {CommonModule} from '@angular/common';
|
|
import {HeaderComponent} from '../header/header.component';
|
|
import {RemoveTrailingPeriodPipe} from "../util/RemoveTrailingPeriodPipe";
|
|
|
|
@Component({
|
|
selector: 'app-about',
|
|
standalone: true,
|
|
imports: [
|
|
CommonModule,
|
|
HeaderComponent,
|
|
RemoveTrailingPeriodPipe
|
|
],
|
|
templateUrl: './about.component.html',
|
|
styleUrl: './about.component.scss'
|
|
})
|
|
export class AboutComponent {
|
|
constructor(public scrollService: ScrollService) {
|
|
}
|
|
}
|