iceholidays-frontend 0.3.0 → 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/assets/stylesheets/iceholidays/frontend/actiontext.scss +119 -0
- data/app/assets/stylesheets/iceholidays/frontend/application.sass.scss +2194 -0
- data/app/assets/stylesheets/iceholidays/frontend/common.scss +317 -0
- data/app/assets/stylesheets/iceholidays/frontend/layout.scss +281 -0
- data/app/assets/stylesheets/iceholidays/frontend/utils/_antd_overrides.scss +122 -0
- data/app/assets/stylesheets/iceholidays/frontend/utils/_variables.scss +4 -0
- data/app/assets/stylesheets/iceholidays/frontend/widgets/filter_pills.scss +52 -0
- data/app/assets/stylesheets/iceholidays/frontend/widgets/search_bar.scss +116 -0
- data/app/controllers/iceholidays/frontend/posts_controller.rb +14 -0
- data/app/controllers/iceholidays/frontend/site_controller.rb +32 -0
- data/app/javascript/api-services/agents-api.service.ts +33 -0
- data/app/javascript/api-services/banners-api.service.ts +28 -0
- data/app/javascript/api-services/locations-api.service.ts +71 -0
- data/app/javascript/api-services/search-api.service.ts +16 -0
- data/app/javascript/api-services/series-api.service.ts +64 -0
- data/app/javascript/api-services/testimonials-api.service.ts +27 -0
- data/app/javascript/interfaces/agent.interface.ts +11 -0
- data/app/javascript/interfaces/banner.interface.ts +10 -0
- data/app/javascript/interfaces/country.interface.ts +19 -0
- data/app/javascript/interfaces/itinerary.interface.ts +111 -0
- data/app/javascript/interfaces/testimonial.interface.ts +6 -0
- data/app/javascript/react/App.tsx +32 -0
- data/app/javascript/react/components/Destinations.tsx +84 -143
- data/app/javascript/react/components/PriceDetails.tsx +146 -0
- data/app/javascript/react/components/Testimonials.tsx +68 -61
- data/app/javascript/react/components/shared/ContactAgentsForm.tsx +44 -0
- data/app/javascript/react/components/shared/Headline.tsx +30 -0
- data/app/javascript/react/components/shared/LocationDropdown.tsx +34 -0
- data/app/javascript/react/components/shared/LocationPostcards.tsx +52 -0
- data/app/javascript/react/components/shared/RibbonSection.tsx +21 -0
- data/app/javascript/react/index.js +3 -5
- data/app/javascript/react/layouts/MainFooter.tsx +97 -0
- data/app/javascript/react/layouts/MainHeader.tsx +83 -0
- data/app/javascript/react/layouts/MainLayout.tsx +21 -0
- data/app/javascript/react/pages/AboutUsPage.tsx +95 -0
- data/app/javascript/react/pages/BlogPage.tsx +81 -0
- data/app/javascript/react/pages/BlogShowPage.tsx +43 -0
- data/app/javascript/react/pages/ContactAgentsPage.tsx +185 -0
- data/app/javascript/react/pages/ContactUsPage.tsx +122 -0
- data/app/javascript/react/pages/CountriesPage.tsx +57 -0
- data/app/javascript/react/pages/Homepage.tsx +100 -0
- data/app/javascript/react/pages/ListingPage.tsx +292 -0
- data/app/javascript/react/pages/ShowPage.tsx +402 -0
- data/app/javascript/react/widgets/FilterPills.tsx +111 -0
- data/app/javascript/react/widgets/SearchBarWidget.tsx +58 -0
- data/app/views/iceholidays/frontend/posts/index.html.erb +9 -0
- data/app/views/iceholidays/frontend/posts/show.html.erb +2 -0
- data/app/views/iceholidays/frontend/site/index.html.erb +1 -24
- data/app/views/layouts/iceholidays/frontend/application.html.erb +2 -6
- data/config/routes.rb +10 -0
- data/lib/iceholidays/frontend/version.rb +1 -1
- data/public/iceholidays-assets/application.css +2638 -0
- data/public/iceholidays-assets/application.js +212 -651
- data/public/iceholidays-assets/application.js.map +4 -4
- data/public/iceholidays-assets/images/about-us_logo_mobile.png +0 -0
- data/public/iceholidays-assets/images/about_us.png +0 -0
- data/public/iceholidays-assets/images/about_us2.png +0 -0
- data/public/iceholidays-assets/images/blog.png +0 -0
- data/public/iceholidays-assets/images/blog1.png +0 -0
- data/public/iceholidays-assets/images/certificate1.png +0 -0
- data/public/iceholidays-assets/images/certificate2.png +0 -0
- data/public/iceholidays-assets/images/china_southern_airlines.png +0 -0
- data/public/iceholidays-assets/images/china_southern_airlines_icon.png +0 -0
- data/public/iceholidays-assets/images/competitiveness.png +0 -0
- data/public/iceholidays-assets/images/contact_agents.png +0 -0
- data/public/iceholidays-assets/images/contact_us.png +0 -0
- data/public/iceholidays-assets/images/contact_us_form.png +0 -0
- data/public/iceholidays-assets/images/destinations_logo.png +0 -0
- data/public/iceholidays-assets/images/ethical.png +0 -0
- data/public/iceholidays-assets/images/footer-bg_mobile.png +0 -0
- data/public/iceholidays-assets/images/hw_logo.png +0 -0
- data/public/iceholidays-assets/images/innovative.png +0 -0
- data/public/iceholidays-assets/images/logo_mobile.png +0 -0
- data/public/iceholidays-assets/images/plane.png +0 -0
- data/public/iceholidays-assets/images/social/ico_fb.png +0 -0
- data/public/iceholidays-assets/images/social/ico_ig.png +0 -0
- data/public/iceholidays-assets/images/social/ico_twitter.png +0 -0
- data/public/iceholidays-assets/images/social/ico_yt.png +0 -0
- data/public/iceholidays-assets/images/social.png +0 -0
- metadata +74 -71
- data/app/assets/stylesheets/iceholidays/frontend/application.scss +0 -904
- data/app/javascript/react/components/Homepage.tsx +0 -15
- data/app/javascript/react/components/HomepageBanner.tsx +0 -62
- data/app/views/layouts/iceholidays/frontend/shared/_footer.html.erb +0 -42
- data/app/views/layouts/iceholidays/frontend/shared/_header.html.erb +0 -20
- data/public/iceholidays-assets/images/Frame71.png +0 -0
- data/public/iceholidays-assets/images/africa.png +0 -0
- data/public/iceholidays-assets/images/banner1.png +0 -0
- data/public/iceholidays-assets/images/banner2.png +0 -0
- data/public/iceholidays-assets/images/china.png +0 -0
- data/public/iceholidays-assets/images/china2.png +0 -0
- data/public/iceholidays-assets/images/guangzhou.png +0 -0
- data/public/iceholidays-assets/images/guilin.png +0 -0
- data/public/iceholidays-assets/images/harbin.png +0 -0
- data/public/iceholidays-assets/images/hongkong.png +0 -0
- data/public/iceholidays-assets/images/inner_mongolia.png +0 -0
- data/public/iceholidays-assets/images/jiangxi.png +0 -0
- data/public/iceholidays-assets/images/kenya.png +0 -0
- data/public/iceholidays-assets/images/kenya2.png +0 -0
- data/public/iceholidays-assets/images/kunming.png +0 -0
- data/public/iceholidays-assets/images/slikroad.png +0 -0
- data/public/iceholidays-assets/images/southafrica.png +0 -0
- data/public/iceholidays-assets/images/tanzania.png +0 -0
- data/public/iceholidays-assets/images/uganda.png +0 -0
- /data/public/iceholidays-assets/images/{Group_71.png → about-us_logo.png} +0 -0
- /data/public/iceholidays-assets/images/{chongqing.png → china_listings_cover.png} +0 -0
- /data/public/iceholidays-assets/images/{logo_container.png → logo.png} +0 -0
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { Link } from "react-router-dom";
|
|
3
|
+
import { mdiMenuRight } from "@mdi/js";
|
|
4
|
+
import Icon from "@mdi/react";
|
|
5
|
+
import { Location } from "../../../interfaces/country.interface";
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
const Postcard = (
|
|
9
|
+
props: {
|
|
10
|
+
link: string;
|
|
11
|
+
image: string;
|
|
12
|
+
name: string;
|
|
13
|
+
tourCount: number;
|
|
14
|
+
}
|
|
15
|
+
) => {
|
|
16
|
+
const { link, image, name, tourCount } = props;
|
|
17
|
+
|
|
18
|
+
const pluralize = (count: number, noun: string, suffix = 's') =>
|
|
19
|
+
`${count} ${noun}${count > 1 ? suffix : ''}`;
|
|
20
|
+
|
|
21
|
+
return (
|
|
22
|
+
<Link to={link} className="postcard">
|
|
23
|
+
<img src={image}/>
|
|
24
|
+
<div className="details">
|
|
25
|
+
<span className="name">{name}</span>
|
|
26
|
+
<span className="tour-count">{pluralize(tourCount, "Tour")} <Icon path={mdiMenuRight} size={1} /> </span>
|
|
27
|
+
</div>
|
|
28
|
+
</Link>
|
|
29
|
+
)
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
const LocationPostcards = (
|
|
33
|
+
props: {
|
|
34
|
+
locations:Location[];
|
|
35
|
+
}
|
|
36
|
+
) => {
|
|
37
|
+
const { locations } = props;
|
|
38
|
+
|
|
39
|
+
const listingLink = (locationId: number) => {
|
|
40
|
+
return `/app/listing?location_id=${locationId}`;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
return (
|
|
44
|
+
<div className="postcards">
|
|
45
|
+
{
|
|
46
|
+
locations.map((city, index)=><Postcard key={index} link={listingLink(city.id)} image={city.cover} name={city.name} tourCount={city.tourCount}/>)
|
|
47
|
+
}
|
|
48
|
+
</div>
|
|
49
|
+
)
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
export default LocationPostcards;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import React, { JSX } from "react";
|
|
2
|
+
|
|
3
|
+
const RibbonSection = (
|
|
4
|
+
props: {
|
|
5
|
+
title?: string;
|
|
6
|
+
children?: JSX.Element;
|
|
7
|
+
}
|
|
8
|
+
) => {
|
|
9
|
+
const { title, children } = props;
|
|
10
|
+
return (
|
|
11
|
+
<div id="ribbon-section">
|
|
12
|
+
<div id="ribbon-section_header">
|
|
13
|
+
{ title && <h1> {title} </h1>}
|
|
14
|
+
</div>
|
|
15
|
+
|
|
16
|
+
{children}
|
|
17
|
+
</div>
|
|
18
|
+
)
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
export default RibbonSection;
|
|
@@ -1,8 +1,6 @@
|
|
|
1
|
+
|
|
2
|
+
import App from "./App"
|
|
1
3
|
import ReactComponent from "./application"
|
|
2
|
-
import Destinations from "./components/Destinations"
|
|
3
|
-
import HomepageBanner from "./components/HomepageBanner"
|
|
4
|
-
import Homepage from "./components/Homepage"
|
|
5
|
-
import Testimonials from "./components/Testimonials"
|
|
6
4
|
|
|
7
5
|
|
|
8
|
-
ReactComponent.setup({
|
|
6
|
+
ReactComponent.setup({App})
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
import { Col, Flex, notification, Row, Space } from "antd";
|
|
2
|
+
import React from "react";
|
|
3
|
+
import { Link } from "react-router-dom";
|
|
4
|
+
import LocationsApi from "../../api-services/locations-api.service";
|
|
5
|
+
import { Country } from "../../interfaces/country.interface";
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
const menus = [
|
|
9
|
+
{
|
|
10
|
+
label: "Home",
|
|
11
|
+
link: "/app"
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
label: "pdpa",
|
|
15
|
+
link: "/app"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
label: "about us",
|
|
19
|
+
link: "/app/about-us"
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
label: "privacy policy",
|
|
23
|
+
link: "/app"
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
label: "contact us",
|
|
27
|
+
link: "/app/contact-us"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
label: "terms & conditions",
|
|
31
|
+
link: "/app"
|
|
32
|
+
},
|
|
33
|
+
]
|
|
34
|
+
|
|
35
|
+
export default class MainFooter extends React.Component {
|
|
36
|
+
api = new LocationsApi;
|
|
37
|
+
|
|
38
|
+
state = {
|
|
39
|
+
countries: []
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
componentDidMount() {
|
|
43
|
+
this.api.getCountries()
|
|
44
|
+
.then(locationsData => {
|
|
45
|
+
this.setState({countries: locationsData})
|
|
46
|
+
})
|
|
47
|
+
.catch(error => {
|
|
48
|
+
notification.error({ message: 'An error occured while loading countries.'});
|
|
49
|
+
});
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
render(){
|
|
53
|
+
return (
|
|
54
|
+
<div id="main-footer">
|
|
55
|
+
<Row id="main-footer_links" gutter={[12, 12]}>
|
|
56
|
+
<Col flex="1 0 25%" className="column">
|
|
57
|
+
<Space direction="vertical">
|
|
58
|
+
<div className="link-group-title">Countries</div>
|
|
59
|
+
<div className="link-group-items">
|
|
60
|
+
{
|
|
61
|
+
this.state.countries.map((country: Country)=> <Link key={country.id} to={`/app/listing?keyword=${country.name}`}>{country.name}</Link> )
|
|
62
|
+
}
|
|
63
|
+
</div>
|
|
64
|
+
</Space>
|
|
65
|
+
</Col>
|
|
66
|
+
<Col flex="1 0 30%" className="column footer-menu">
|
|
67
|
+
<Space direction="vertical">
|
|
68
|
+
<div className="link-group-items">
|
|
69
|
+
{
|
|
70
|
+
menus.map(menu => <Link to={menu.link}>{menu.label}</Link>)
|
|
71
|
+
}
|
|
72
|
+
</div>
|
|
73
|
+
</Space>
|
|
74
|
+
</Col>
|
|
75
|
+
<Col flex="1 0 20%" className="column contact-info">
|
|
76
|
+
<Space direction="vertical" align="center">
|
|
77
|
+
<Flex vertical gap="20px" align="center">
|
|
78
|
+
<div className="link-group-title">Contact Us</div>
|
|
79
|
+
<div><Link to="/app/contact-agents">contact agents</Link></div>
|
|
80
|
+
<div className="link-group-title">Follow us on</div>
|
|
81
|
+
<Flex gap={20} justify="space-between">
|
|
82
|
+
<img src="/iceholidays-assets/images/social/ico_fb.png"/>
|
|
83
|
+
<img src="/iceholidays-assets/images/social/ico_twitter.png"/>
|
|
84
|
+
<img src="/iceholidays-assets/images/social/ico_yt.png"/>
|
|
85
|
+
<img src="/iceholidays-assets/images/social/ico_ig.png"/>
|
|
86
|
+
</Flex>
|
|
87
|
+
</Flex>
|
|
88
|
+
</Space>
|
|
89
|
+
</Col>
|
|
90
|
+
</Row>
|
|
91
|
+
<div id="copyright">
|
|
92
|
+
<span>Copyright © 2024 Golden Destinations</span>
|
|
93
|
+
</div>
|
|
94
|
+
</div>
|
|
95
|
+
)
|
|
96
|
+
}
|
|
97
|
+
}
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
import { mdiFileDownload, mdiMenu } from "@mdi/js";
|
|
2
|
+
import Icon from "@mdi/react";
|
|
3
|
+
import { Button, Drawer, Menu } from "antd";
|
|
4
|
+
import React, { useState } from "react";
|
|
5
|
+
import type { MenuProps } from 'antd';
|
|
6
|
+
import { Link, useLocation, useMatch } from "react-router-dom";
|
|
7
|
+
|
|
8
|
+
type MenuItem = Required<MenuProps>['items'][number];
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
const items: MenuItem[] = [
|
|
12
|
+
{
|
|
13
|
+
key: 'app',
|
|
14
|
+
label: <Link to="/app"> Home </Link>
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
key: 'about-us',
|
|
18
|
+
label: <Link to="/app/about-us"> About Us </Link>
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
key: 'countries',
|
|
22
|
+
label: <Link to="/app/countries"> Countries </Link>
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
key: 'blog',
|
|
26
|
+
label: <Link to="/app/blog"> Blog </Link>
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
key: 'logo',
|
|
30
|
+
label: <img src="/iceholidays-assets/images/logo.png" className="logo logo_desktop"/>,
|
|
31
|
+
disabled: true
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
key: 'contact-agents',
|
|
35
|
+
label: <Link to="/app/contact-agents"> Contact Agents </Link>
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
key: 'contact-us',
|
|
39
|
+
label: <Link to="/app/contact-us"> Contact Us </Link>
|
|
40
|
+
},
|
|
41
|
+
]
|
|
42
|
+
|
|
43
|
+
const MainHeader = () => {
|
|
44
|
+
const [open, setOpen] = useState(false);
|
|
45
|
+
const location = useLocation();
|
|
46
|
+
const activeUrlKey = location.pathname.split("/").pop() || "app";
|
|
47
|
+
const [current, setCurrent] = useState(activeUrlKey);
|
|
48
|
+
|
|
49
|
+
const onClick: MenuProps['onClick'] = (e) => {
|
|
50
|
+
setCurrent(e.key);
|
|
51
|
+
setOpen(false);
|
|
52
|
+
};
|
|
53
|
+
|
|
54
|
+
const showDrawer = () => {
|
|
55
|
+
setOpen(true);
|
|
56
|
+
};
|
|
57
|
+
|
|
58
|
+
const onClose = () => {
|
|
59
|
+
setOpen(false);
|
|
60
|
+
};
|
|
61
|
+
|
|
62
|
+
return (
|
|
63
|
+
<div id="main-header">
|
|
64
|
+
<Menu mode="horizontal" items={items} onClick={onClick} selectedKeys={[current]} className="nav-menu"/>
|
|
65
|
+
|
|
66
|
+
<a href="/app"><img src="/iceholidays-assets/images/logo_mobile.png" className="logo logo_mobile"/></a>
|
|
67
|
+
|
|
68
|
+
<div id="nav-buttons">
|
|
69
|
+
<Button id="get-brochure" type="primary"><Icon path={mdiFileDownload} size="18px" /> get brochure</Button>
|
|
70
|
+
|
|
71
|
+
<Button id="toggle-menu" type="primary" onClick={showDrawer}>
|
|
72
|
+
<Icon path={mdiMenu} size="25px" />
|
|
73
|
+
</Button>
|
|
74
|
+
</div>
|
|
75
|
+
|
|
76
|
+
<Drawer title={null} onClose={onClose} open={open} id="nav-drawer">
|
|
77
|
+
<Menu items={items} onClick={onClick} selectedKeys={[current]} className="nav-menu_mobile"/>
|
|
78
|
+
</Drawer>
|
|
79
|
+
</div>
|
|
80
|
+
)
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
export default MainHeader;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { Outlet } from "react-router-dom";
|
|
3
|
+
import { Layout } from 'antd';
|
|
4
|
+
import MainHeader from "./MainHeader";
|
|
5
|
+
import MainFooter from "./MainFooter";
|
|
6
|
+
|
|
7
|
+
const { Content } = Layout;
|
|
8
|
+
|
|
9
|
+
const MainLayout = () => {
|
|
10
|
+
return (
|
|
11
|
+
<Layout>
|
|
12
|
+
<MainHeader/>
|
|
13
|
+
<Content>
|
|
14
|
+
<Outlet/>
|
|
15
|
+
</Content>
|
|
16
|
+
<MainFooter/>
|
|
17
|
+
</Layout>
|
|
18
|
+
)
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
export default MainLayout;
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import Headline from "../components/shared/Headline";
|
|
3
|
+
import { Col, Flex, Row } from "antd";
|
|
4
|
+
import RibbonSection from "../components/shared/RibbonSection";
|
|
5
|
+
|
|
6
|
+
const bannerPath = '/iceholidays-assets/images/about_us.png';
|
|
7
|
+
const breadcrumbs = [
|
|
8
|
+
{ title: 'Home' },
|
|
9
|
+
{ title: 'About Us' }
|
|
10
|
+
]
|
|
11
|
+
|
|
12
|
+
const AboutUsPage = React.FC = () => (
|
|
13
|
+
<div id="about-us-page">
|
|
14
|
+
<Headline bannerImage={bannerPath} breadcrumbs={breadcrumbs} title="“WHAT WE DO”"/>
|
|
15
|
+
|
|
16
|
+
<div id="about-us-page_body">
|
|
17
|
+
<div id="introduction">
|
|
18
|
+
<Flex vertical align="center" justify="center">
|
|
19
|
+
<img src="/iceholidays-assets/images/logomark.png"/>
|
|
20
|
+
<h1> Welcome To The Signature Tours </h1>
|
|
21
|
+
</Flex>
|
|
22
|
+
</div>
|
|
23
|
+
|
|
24
|
+
<div id="article">
|
|
25
|
+
<Row gutter={40}>
|
|
26
|
+
<Col span={24}>
|
|
27
|
+
<img src="/iceholidays-assets/images/about_us2.png"/>
|
|
28
|
+
</Col>
|
|
29
|
+
<Col span={12}>
|
|
30
|
+
<p>The Signature Tours was born from a passion for redefining travel. We believe that journeys should be more than just trips—they should be transformative experiences, filled with moments that leave an indelible mark on the soul. Catering to discerning travelers who seek more than the ordinary, The Signature Tours crafts bespoke journeys that combine sophistication, cultural immersion, and unparalleled quality. </p>
|
|
31
|
+
<p>Our story begins with a vision: to create journeys that linger in the heart long after the traveler returns home. Each itinerary we design reflects our dedication to perfection. From the charm of boutique accommodations nestled in picturesque landscapes to handpicked cultural experiences that unveil the soul of a destination, every detail is thoughtfully considered to ensure your journey is as seamless as it is extraordinary.</p>
|
|
32
|
+
<p>At The Signature Tours, we embrace the philosophy of the S-Tours experience—where every moment is a masterpiece. Imagine strolling through the cobblestone streets of a quaint village, savoring the aroma of freshly baked bread as locals welcome you with warm smiles. </p>
|
|
33
|
+
</Col>
|
|
34
|
+
<Col span={12}>
|
|
35
|
+
<p>Picture yourself standing atop a majestic mountain at sunrise,the golden hues of the horizon reflecting the sense of awe within you. These are the kinds of moments we strive to create—authentic, meaningful, and unforgettable.</p>
|
|
36
|
+
<p>But our commitment goes beyond premium and comfort. It’s about forging connections—with places, cultures, and people. It’s about stepping into a story, whether it’s exploring ancient ruins with a seasoned archaeologist, learning the art of wine making from a passionate vintner, or sharing laughter with a local family over a home-cooked meal.</p>
|
|
37
|
+
<p>At The Signature Tours, every journey is an invitation to step out of the ordinary and into a world of wonder. We’re not just about travel; we’re about creating memories that stay with you forever. This is our promise, and this is what we call the S-Tours philosophy where we deliver S-Class Journeys, Signature Memories. Because every journey should be as unique as your signature.</p>
|
|
38
|
+
</Col>
|
|
39
|
+
</Row>
|
|
40
|
+
</div>
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
</div>
|
|
44
|
+
<RibbonSection>
|
|
45
|
+
<>
|
|
46
|
+
<Row id="quality-policy" gutter={40} justify="center">
|
|
47
|
+
<Col span={24}>
|
|
48
|
+
<div className="section-header">
|
|
49
|
+
<h2>Quality Policy</h2>
|
|
50
|
+
<p>ICE Holidays is committed to striving towards our customer satisfaction in areas of more quality value for money of our products & services. The management and all employees are committed to the company quality policy through effort in:</p>
|
|
51
|
+
</div>
|
|
52
|
+
</Col>
|
|
53
|
+
<Col xs={24} sm={24} lg={8}>
|
|
54
|
+
<div className="items">
|
|
55
|
+
<img src="/iceholidays-assets/images/innovative.png"/>
|
|
56
|
+
<label>Innovative</label>
|
|
57
|
+
<p>Talent team develops great products and services; Agile, innovative, and a quality conscious team of resourceful people dedicated to the best.</p>
|
|
58
|
+
</div>
|
|
59
|
+
</Col>
|
|
60
|
+
<Col xs={24} sm={24} lg={8}>
|
|
61
|
+
<div className="items">
|
|
62
|
+
<img src="/iceholidays-assets/images/competitiveness.png"/>
|
|
63
|
+
<label>Competitiveness</label>
|
|
64
|
+
<p>Provide competitive pricing to achieve customer satisfaction.</p>
|
|
65
|
+
</div>
|
|
66
|
+
</Col>
|
|
67
|
+
<Col xs={24} sm={24} lg={8}>
|
|
68
|
+
<div className="items">
|
|
69
|
+
<img src="/iceholidays-assets/images/ethical.png"/>
|
|
70
|
+
<label>Ethical</label>
|
|
71
|
+
<p>Precedent for an honest, fair and ethical business.</p>
|
|
72
|
+
</div>
|
|
73
|
+
</Col>
|
|
74
|
+
</Row>
|
|
75
|
+
|
|
76
|
+
<Row id="certificates" align="middle" justify="center" gutter={[24, 24]}>
|
|
77
|
+
<Col span={24}>
|
|
78
|
+
<div className="section-header">
|
|
79
|
+
<h2>Our Certificates</h2>
|
|
80
|
+
<p>We have acquired recognition and certificates such as:</p>
|
|
81
|
+
</div>
|
|
82
|
+
</Col>
|
|
83
|
+
<Col xs={24} sm={24} lg={8}>
|
|
84
|
+
<img src="/iceholidays-assets/images/certificate1.png"/>
|
|
85
|
+
</Col>
|
|
86
|
+
<Col xs={24} sm={24} lg={8}>
|
|
87
|
+
<img src="/iceholidays-assets/images/certificate2.png"/>
|
|
88
|
+
</Col>
|
|
89
|
+
</Row>
|
|
90
|
+
</>
|
|
91
|
+
</RibbonSection>
|
|
92
|
+
</div>
|
|
93
|
+
);
|
|
94
|
+
|
|
95
|
+
export default AboutUsPage;
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import Headline from "../components/shared/Headline";
|
|
3
|
+
import { Button, Card, Col, Row, Space } from "antd";
|
|
4
|
+
import FilterPills from "../widgets/FilterPills";
|
|
5
|
+
import { Link } from "react-router-dom";
|
|
6
|
+
const { Meta } = Card;
|
|
7
|
+
|
|
8
|
+
const bannerPath = '/iceholidays-assets/images/blog.png';
|
|
9
|
+
const breadcrumbs = [
|
|
10
|
+
{ title: 'Home' },
|
|
11
|
+
{ title: 'Blog' }
|
|
12
|
+
]
|
|
13
|
+
|
|
14
|
+
const types = [ "News", "Blogs" ];
|
|
15
|
+
const blogs = [
|
|
16
|
+
{
|
|
17
|
+
id: 1,
|
|
18
|
+
cover: "/iceholidays-assets/images/blog1.png",
|
|
19
|
+
title: "旅游的意义:探索世界与内心的旅程",
|
|
20
|
+
info: "未分类 / 发表评论 / 2024年11月22日",
|
|
21
|
+
summary: "旅游不仅拓展视野,也带来人生的启示。它教会我们谦逊、适应变化、享受过程,激发内心力量,感恩遇见,并帮助我们找回初心。"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
id: 2,
|
|
25
|
+
cover: "/iceholidays-assets/images/blog1.png",
|
|
26
|
+
title: "旅游的意义:探索世界与内心的旅程",
|
|
27
|
+
info: "未分类 / 发表评论 / 2024年11月22日",
|
|
28
|
+
summary: "旅游不仅拓展视野,也带来人生的启示。它教会我们谦逊、适应变化、享受过程,激发内心力量,感恩遇见,并帮助我们找回初心。"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
id: 3,
|
|
32
|
+
cover: "/iceholidays-assets/images/blog1.png",
|
|
33
|
+
title: "旅游的意义:探索世界与内心的旅程",
|
|
34
|
+
info: "未分类 / 发表评论 / 2024年11月22日",
|
|
35
|
+
summary: "旅游不仅拓展视野,也带来人生的启示。它教会我们谦逊、适应变化、享受过程,激发内心力量,感恩遇见,并帮助我们找回初心。"
|
|
36
|
+
},
|
|
37
|
+
]
|
|
38
|
+
|
|
39
|
+
const setFilter = (selectedFilter) => {
|
|
40
|
+
console.log("set filter", selectedFilter)
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
const BlogPage = React.FC = () => (
|
|
45
|
+
<div id="blog-page">
|
|
46
|
+
<Headline bannerImage={bannerPath} breadcrumbs={breadcrumbs} title="Blog"/>
|
|
47
|
+
|
|
48
|
+
<div id="blog-page_body">
|
|
49
|
+
<Space size={12} direction="vertical">
|
|
50
|
+
<FilterPills items={types} allOption={true} initialValue={{keyword: "", year: "", month: ""}} selectFilter={(selected)=>setFilter(selected)}></FilterPills>
|
|
51
|
+
</Space>
|
|
52
|
+
|
|
53
|
+
<div id="blogs">
|
|
54
|
+
<Row wrap gutter={20}>
|
|
55
|
+
{
|
|
56
|
+
blogs.map(blog => (
|
|
57
|
+
<Col key={blog.id} span={8}>
|
|
58
|
+
<Link to={`/app/blog/${blog.id}`}>
|
|
59
|
+
<Card
|
|
60
|
+
hoverable
|
|
61
|
+
cover={<img alt="example" src={blog.cover} />}
|
|
62
|
+
>
|
|
63
|
+
<Meta title={blog.title} description={
|
|
64
|
+
<>
|
|
65
|
+
<span>{blog.info}</span>
|
|
66
|
+
<p>{blog.summary}</p>
|
|
67
|
+
<Button color="primary" variant="outlined" block>阅读更多</Button>
|
|
68
|
+
</>
|
|
69
|
+
} />
|
|
70
|
+
</Card>
|
|
71
|
+
</Link>
|
|
72
|
+
</Col>
|
|
73
|
+
))
|
|
74
|
+
}
|
|
75
|
+
</Row>
|
|
76
|
+
</div>
|
|
77
|
+
</div>
|
|
78
|
+
</div>
|
|
79
|
+
);
|
|
80
|
+
|
|
81
|
+
export default BlogPage;
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import Headline from "../components/shared/Headline";
|
|
3
|
+
|
|
4
|
+
const bannerPath = '/iceholidays-assets/images/blog.png';
|
|
5
|
+
const breadcrumbs = [
|
|
6
|
+
{ title: 'Home' },
|
|
7
|
+
{ title: 'Blog' },
|
|
8
|
+
{ title: '从斯里兰卡到马尔代夫' },
|
|
9
|
+
]
|
|
10
|
+
|
|
11
|
+
const types = [ "News", "Blogs" ];
|
|
12
|
+
const blogs = [
|
|
13
|
+
{
|
|
14
|
+
cover: "/iceholidays-assets/images/blog1.png",
|
|
15
|
+
title: "旅游的意义:探索世界与内心的旅程",
|
|
16
|
+
info: "未分类 / 发表评论 / 2024年11月22日",
|
|
17
|
+
summary: "旅游不仅拓展视野,也带来人生的启示。它教会我们谦逊、适应变化、享受过程,激发内心力量,感恩遇见,并帮助我们找回初心。"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
cover: "/iceholidays-assets/images/blog1.png",
|
|
21
|
+
title: "旅游的意义:探索世界与内心的旅程",
|
|
22
|
+
info: "未分类 / 发表评论 / 2024年11月22日",
|
|
23
|
+
summary: "旅游不仅拓展视野,也带来人生的启示。它教会我们谦逊、适应变化、享受过程,激发内心力量,感恩遇见,并帮助我们找回初心。"
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
cover: "/iceholidays-assets/images/blog1.png",
|
|
27
|
+
title: "旅游的意义:探索世界与内心的旅程",
|
|
28
|
+
info: "未分类 / 发表评论 / 2024年11月22日",
|
|
29
|
+
summary: "旅游不仅拓展视野,也带来人生的启示。它教会我们谦逊、适应变化、享受过程,激发内心力量,感恩遇见,并帮助我们找回初心。"
|
|
30
|
+
},
|
|
31
|
+
]
|
|
32
|
+
|
|
33
|
+
const BlogShowPage = React.FC = () => (
|
|
34
|
+
<div id="blog-show-page">
|
|
35
|
+
<Headline bannerImage={bannerPath} breadcrumbs={breadcrumbs} title="Blog"/>
|
|
36
|
+
|
|
37
|
+
<div id="blog-page_body">
|
|
38
|
+
|
|
39
|
+
</div>
|
|
40
|
+
</div>
|
|
41
|
+
);
|
|
42
|
+
|
|
43
|
+
export default BlogShowPage;
|