Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
67 changes: 46 additions & 21 deletions Sample-01/components/Content.jsx
Original file line number Diff line number Diff line change
@@ -1,27 +1,52 @@
import React from 'react';
import { Row, Col } from 'reactstrap';
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';

import contentData from '../utils/contentData';

const Content = () => (
<div className="next-steps my-5" data-testid="content">
<h2 className="my-5 text-center" data-testid="content-title">
What can I do next?
</h2>
<Row className="d-flex justify-content-between" data-testid="content-items">
{contentData.map((col, i) => (
<Col key={i} md={5} className="mb-4">
<h6 className="mb-3">
<a href={col.link}>
<FontAwesomeIcon icon="link" className="mr-2" />
{col.title}
</a>
</h6>
<p>{col.description}</p>
</Col>
))}
</Row>
<div className="next-steps my-5" style={{ padding: '0 20px' }}>
<h2 className="my-5 text-center">Warum Awesome Travel?</h2>

<div className="row d-flex justify-content-between">
<div className="col-md-5 mb-4">
<h6 className="mb-3" style={{ color: '#eb6f33', fontWeight: 'bold' }}>
🌍 Exklusive Reiseziele
</h6>
<p>
Entdecke handverlesene Destinationen weltweit. Von einsamen Stränden bis
hin zu aufregenden Metropolen – wir finden das perfekte Abenteuer für dich.
</p>
</div>

<div className="col-md-5 mb-4">
<h6 className="mb-3" style={{ color: '#eb6f33', fontWeight: 'bold' }}>
🛡️ Rundum-Schutz inklusive
</h6>
<p>
Durch unsere Partnerschaft mit der <strong>Travel-Safe Versicherung</strong>
ist jede Buchung automatisch geschützt. Sicherheit steht bei uns an erster Stelle.
</p>
</div>
</div>

<div className="row d-flex justify-content-between">
<div className="col-md-5 mb-4">
<h6 className="mb-3" style={{ color: '#eb6f33', fontWeight: 'bold' }}>
🔒 Sicherer Login
</h6>
<p>
Deine Daten sind bei uns sicher. Dank modernster Verschlüsselung und
Multi-Faktor-Authentifizierung (MFA) hast nur du Zugriff auf dein Konto.
</p>
</div>

<div className="col-md-5 mb-4">
<h6 className="mb-3" style={{ color: '#eb6f33', fontWeight: 'bold' }}>
✈️ 24/7 Support
</h6>
<p>
Egal wo du bist, unser Team ist rund um die Uhr für dich da. Wir unterstützen
dich bei Umbuchungen oder Notfällen während deiner Reise.
</p>
</div>
</div>
</div>
);

Expand Down