Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 1x 1x 3x 3x 3x 3x 1x | import { isPlatformBrowser } from '@angular/common';
import { Component, OnInit, PLATFORM_ID, inject } from '@angular/core';
import { Meta, Title } from '@angular/platform-browser';
import { FooterElementComponent } from '@elements/footer-element/footer-element.component';
import { HeaderElementComponent } from '@elements/header-element/header-element.component';
import { environment } from '@environments/environment';
import { AnalyticsIntegrationService } from '@services/analyticsIntegration.service';
import { MetaTagService } from '@services/meta-tag.service';
@Component({
selector: 'grt-contact-page',
templateUrl: './contact-page.component.html',
styleUrls: ['./contact-page.component.scss'],
imports: [HeaderElementComponent, FooterElementComponent],
})
export class ContactPageComponent implements OnInit {
private meta = inject(Meta);
private metaTag = inject(MetaTagService);
private titleService = inject(Title);
private analyticsIntegrationService = inject(AnalyticsIntegrationService);
public teamMembers;
australiaNumber = environment.australiaNumber;
europeNumber = environment.europeNumber;
usaAndCanadaNumber = environment.usaAndCanadaNumber;
platformId: any;
isBrowser: any;
constructor() {
const platformdata = inject(PLATFORM_ID);
this.platformId = platformdata;
this.metaTag.removeMetaTags();
this.isBrowser = isPlatformBrowser(this.platformId);
this.meta.addTags(
this.metaTag.getMetaTags(
'Contact Us - Go Real Travel',
"Connect with Go Real Travel effortlessly. Our contact page ensures personalized assistance for your travel inquiries. Let's make your journey memorable",
environment.frontendUrl + '/assets/images/bgd.png',
),
);
this.teamMembers = [
{
img: '/assets/images/prague.png',
name: 'David Manley',
position: 'CEO of GoRealTravel',
quote:
'My mission is to make travel better for our clients. Less stress, but more authenticity and fulfillment.',
},
{
img: '/assets/images/prague.png',
name: 'Martin Wagner',
position: 'CEO of GoRealTravel',
quote:
'My mission is to make travel better for our clients. Less stress, but more authenticity and fulfillment.',
},
{
img: '/assets/images/prague.png',
name: 'Petr Skarka',
position: 'CEO of GoRealTravel',
quote:
'My mission is to make travel better for our clients. Less stress, but more authenticity and fulfillment.',
},
{
img: '/assets/images/prague.png',
name: 'Andrew Barton',
position: 'CEO of GoRealTravel',
quote:
'My mission is to make travel better for our clients. Less stress, but more authenticity and fulfillment.',
},
{
img: '/assets/images/prague.png',
name: 'Brendan Wade-Keszey',
position: 'Travel Consultant',
quote:
'Originally from New York State, I have been delightfully living and working in Europe for almost a decade. My motto: “Better to see something once than hear about it a thousand times',
},
{
img: '/assets/images/prague.png',
name: 'Nick Young',
position: 'Travel Consultant',
quote:
'I have travelled and lived in France, Italy and the Czech Republic. I will build for you the best travel experience, including amazing tips on where to have good food and wine of course!',
},
{
img: '/assets/images/prague.png',
name: 'Justin Brinkerhoff',
position: 'Travel Consultant',
quote:
'I’m fortunate to be able to travel around Europe and visit places most people only dream of. Go Real Travel gives me the chance to share my experience and help others make their travel dreams come true.',
},
{
img: '/assets/images/prague.png',
name: 'Danielle Nowatkoski',
position: 'Travel Consultant',
quote:
'Prague is my favourite destination in Europe: it has profound architecture, old cobblestone streets that speak history, numerous pubs, and many more hidden gems.',
},
];
this.titleService.setTitle('Contact Us - Go Real Travel');
}
ngOnInit() {
if (this.isBrowser) {
this.analyticsIntegrationService.loadScript();
}
}
}
|