/*
 * SPDX-FileCopyrightText: 2025 SAP Spartacus team <spartacus-team@sap.com>
 *
 * SPDX-License-Identifier: Apache-2.0
 */

import { ChangeDetectionStrategy, Component } from '@angular/core';
import { User } from '@spartacus/core';
import { UserService } from '@spartacus/core';

@Component({
  selector: 'cx-user-profile',
  templateUrl: './user-profile.component.html',
  styleUrls: ['./user-profile.component.scss'],
  changeDetection: ChangeDetectionStrategy.OnPush,
  standalone: false,
})
export class UserProfileComponent {
  constructor() {
    // TODO: Implement component logic
  }

  // TODO: Add component methods
}
