From 36624b0d419ff897552b59165253192a03c642d8 Mon Sep 17 00:00:00 2001 From: Aroy-Art Date: Tue, 20 May 2025 22:50:10 +0200 Subject: [PATCH] Add: about page component --- src/app/app.routes.ts | 1 + src/app/pages/about/about.component.html | 87 ++++++++++++++++++++++++ src/app/pages/about/about.component.ts | 13 ++++ 3 files changed, 101 insertions(+) create mode 100644 src/app/pages/about/about.component.html create mode 100644 src/app/pages/about/about.component.ts diff --git a/src/app/app.routes.ts b/src/app/app.routes.ts index afc6859..c73c324 100644 --- a/src/app/app.routes.ts +++ b/src/app/app.routes.ts @@ -3,5 +3,6 @@ import { HomeComponent } from './pages/home/home.component'; export const routes: Routes = [ { path: '', component: HomeComponent }, + { path: 'about', loadComponent: () => import('./pages/about/about.component').then(m => m.AboutComponent) }, { path: '**', redirectTo: '' } ]; diff --git a/src/app/pages/about/about.component.html b/src/app/pages/about/about.component.html new file mode 100644 index 0000000..badbdd7 --- /dev/null +++ b/src/app/pages/about/about.component.html @@ -0,0 +1,87 @@ +
+

About Energy Price Dashboard

+ +
+

Our Mission

+

+ At Energy Price Dashboard, our mission is to provide Swedish consumers with transparent, real-time information about energy prices across different regions. We believe that access to clear data empowers individuals and businesses to make informed decisions about their energy consumption, ultimately leading to more cost-effective and sustainable energy use. +

+ +

What We Do

+

+ We collect and analyze energy price data from across Sweden's energy market, presenting it in an accessible and user-friendly dashboard. Our platform allows users to: +

+
    +
  • Track real-time electricity prices in your region
  • +
  • Compare prices across different Swedish regions
  • +
  • View historical price trends and patterns
  • +
  • Set alerts for price changes
  • +
  • Access forecasts and predictions for future energy costs
  • +
+
+ +
+

Our Team

+

+ Energy Price Dashboard was founded in 2023 by a team of energy experts, data scientists, and software developers passionate about bringing transparency to the energy market. Our diverse team brings together decades of combined experience in the Swedish energy sector and cutting-edge technology development. +

+ +
+ +
+
+ + + +
+

Elsa Johansson

+

Founder & CEO

+

Former energy policy advisor with 15+ years in the Swedish energy sector

+
+ + +
+
+ + + +
+

Magnus Lindgren

+

Chief Data Scientist

+

PhD in Data Science with expertise in energy market analysis and prediction models

+
+ + +
+
+ + + +
+

Sofia Bergström

+

Head of Technology

+

Software architect with extensive experience building data visualization platforms

+
+
+
+ +
+

Our Partners

+

+ We work closely with energy providers, government agencies, and research institutions across Sweden to ensure our data is accurate, comprehensive, and up-to-date. Our partnerships include: +

+
    +
  • Swedish Energy Agency (Energimyndigheten)
  • +
  • Nord Pool - Nordic power exchange
  • +
  • KTH Royal Institute of Technology
  • +
  • Leading energy suppliers across Sweden
  • +
+ +
+

+ Interested in partnering with us? We're always looking to expand our network of data providers and collaborators. + Get in touch to discuss potential partnerships. +

+
+
+
diff --git a/src/app/pages/about/about.component.ts b/src/app/pages/about/about.component.ts new file mode 100644 index 0000000..0e13eb6 --- /dev/null +++ b/src/app/pages/about/about.component.ts @@ -0,0 +1,13 @@ +import { Component } from '@angular/core'; +import { CommonModule } from '@angular/common'; + +@Component({ + selector: 'app-about', + standalone: true, + imports: [CommonModule], + templateUrl: './about.component.html', +}) +export class AboutComponent { + // Add any component logic here +} +