modelcontextprotocol/typescript-sdk

Arshan Solution

Opened this issue · 1 comments

Welcome to Arshan Solution AI Application

import { Component } from '@angular/core';

@component({
selector: 'app-hero-section',
templateUrl: './hero-section.component.html',
styleUrls: ['./hero-section.component.css']
})
export class HeroSectionComponent {
companyName: string = 'ArshanSolution';
platformName: string = 'Agentspace';

getHeadline(): string {
return Empower Your Business with ${this.platformName} & ${this.companyName};
}

getSubHeadline(): string {
return Build, manage, and scale intelligent AI agents with Google’s ${this.platformName}, customized by ${this.companyName} to accelerate your growth.;
}
}