Skip to content
This repository has been archived by the owner on Feb 9, 2024. It is now read-only.

London10-Bekir-Hotel-Project-Lesson1&2 #609

Open
wants to merge 27 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
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
Prev Previous commit
Next Next commit
---
  • Loading branch information
BekirKuscu committed Jun 14, 2023
commit af6678f9a398a52fc2bd8ac302b27fa1cee4ffa8
3 changes: 2 additions & 1 deletion src/App.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
import React from "react";

import TouristInfoCards from "./TouristInfoCards";
import Bookings from "./Bookings";
import "./App.css";

const App = () => {
return (
<div className="App">
<header className="App-header">CYF Hotel</header>
<TouristInfoCards/>
<Bookings />
</div>
);
15 changes: 15 additions & 0 deletions src/Footer.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import React from "react";

const Footer = ({ address }) => {
return (
<footer>
<ul>
{address.map((item, index) => (
<li key={index}>{item}</li>
))}
</ul>
</footer>
);
};

export default Footer;
37 changes: 37 additions & 0 deletions src/TouristInfoCards.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
import React from "react";

const TouristInfoCards = () => {
return (
<div className="card">
<div className="card">
<img src="https://a.travel-assets.com/findyours-php/viewfinder/images/res70/37000/37879-George-Square.jpg" className="card-img-top" alt="Glasgow" />
<div className="card-body">
<a href="#" className="btn btn-primary">Go somewhere</a>
<h2>Glasgow</h2>
<p>Experience the vibrant cultural scene and architectural beauty of Glasgow.</p>
<a href="https://peoplemakeglasgow.com" target="_blank" rel="noopener noreferrer">Visit Glasgow</a>
</div>
</div>
<div className="card">
<img src="https://dynamic-media-cdn.tripadvisor.com/media/photo-o/15/a1/ee/e8/the-famous-manchester.jpg?w=1200&h=-1&s=1" className="card-img-top" alt="Manchester" />
<div className="card-body">
<a href="#" className="btn btn-primary">Go somewhere</a>
<h2>Manchester</h2>
<p>Discover the rich history, music, and sports culture of Manchester.</p>
<a href="https://visitmanchester.com" target="_blank" rel="noopener noreferrer">Visit Manchester</a>
</div>
</div>
<div className="card">
<img src="https://static.toiimg.com/photo/45297403.cms" className="card-img-top" alt="London" />
<div className="card-body">
<a href="#" className="btn btn-primary">Go somewhere</a>
<h2>London</h2>
<p>Explore the iconic landmarks, world-class museums, and diverse attractions of London.</p>
<a href="https://visitlondon.com" target="_blank" rel="noopener noreferrer">Visit London</a>
</div>
</div>
</div>
);
};

export default TouristInfoCards;