Skip to main content

Overview

The Footer component is a simple presentational component that displays the ScreenPulse branding and copyright symbol at the bottom of the application. Location: src/app/layout/footer/footer.component.ts

Component Structure

@Component({
  selector: 'app-footer',
  templateUrl: './footer.component.html',
  styleUrls: ['./footer.component.scss']
})
export class FooterComponent {}

Features

  • Static Content: Pure presentational component with no inputs or outputs
  • Minimal Design: Clean footer with branding and copyright icon
  • Material Icons: Uses Angular Material copyright icon

Usage

The footer is typically placed in the main application layout:
<app-navbar></app-navbar>
<router-outlet></router-outlet>
<app-footer></app-footer>

Content

The footer displays:
  • Brand Name: “ScreenPulse” text
  • Copyright Icon: Material Design copyright symbol

Styling

The component uses scoped styles defined in footer.component.scss to position and style the footer content consistently across all pages.

Build docs developers (and LLMs) love