feat: add Tailwind CSS and update hotel images
This commit is contained in:
parent
8c0e49e8a6
commit
b64179221f
@ -28,12 +28,15 @@
|
||||
"@angular/cli": "^18.2.3",
|
||||
"@angular/compiler-cli": "^18.2.3",
|
||||
"@types/jasmine": "~5.1.0",
|
||||
"autoprefixer": "^10.4.20",
|
||||
"jasmine-core": "~5.1.0",
|
||||
"karma": "~6.4.0",
|
||||
"karma-chrome-launcher": "~3.2.0",
|
||||
"karma-coverage": "~2.2.0",
|
||||
"karma-jasmine": "~5.1.0",
|
||||
"karma-jasmine-html-reporter": "~2.1.0",
|
||||
"postcss": "^8.4.49",
|
||||
"tailwindcss": "^3.4.15",
|
||||
"typescript": "~5.5.2"
|
||||
}
|
||||
}
|
||||
|
BIN
public/assets/img/1.jpg
Normal file
BIN
public/assets/img/1.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 637 KiB |
BIN
public/assets/img/2.jpg
Normal file
BIN
public/assets/img/2.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 142 KiB |
BIN
public/assets/img/3.jpg
Normal file
BIN
public/assets/img/3.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 143 KiB |
BIN
public/assets/img/4.jpg
Normal file
BIN
public/assets/img/4.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.1 MiB |
BIN
public/assets/img/5.jpg
Normal file
BIN
public/assets/img/5.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 137 KiB |
@ -10,7 +10,7 @@ export class HotelDataService implements InMemoryDbService{
|
||||
"hotelName": "Buea süßes Leben",
|
||||
"description": "Schöne Aussicht am Meer",
|
||||
"price": 230.5,
|
||||
"imageUrl": "assets/img/heisenberg.jpg",
|
||||
"imageUrl": "assets/img/1.jpg",
|
||||
"rating": 3.5,
|
||||
"tags": ["Meer", "Berge"]
|
||||
},
|
||||
@ -19,7 +19,7 @@ export class HotelDataService implements InMemoryDbService{
|
||||
"hotelName": "Marrakesch",
|
||||
"description": "Genießen Sie den Blick auf die Berge",
|
||||
"price": 145.5,
|
||||
"imageUrl": "assets/img/kjan.png",
|
||||
"imageUrl": "assets/img/2.jpg",
|
||||
"rating": 5,
|
||||
"tags": ["Meer", "Berge"]
|
||||
},
|
||||
@ -28,7 +28,7 @@ export class HotelDataService implements InMemoryDbService{
|
||||
"hotelName": "Abuja neuer Palast",
|
||||
"description": "Kompletter Aufenthalt mit Autoservice",
|
||||
"price": 120.12,
|
||||
"imageUrl": "assets/img/huy.png",
|
||||
"imageUrl": "assets/img/3.jpg",
|
||||
"rating": 4,
|
||||
"tags": ["Meer", "Berge"]
|
||||
},
|
||||
@ -37,7 +37,7 @@ export class HotelDataService implements InMemoryDbService{
|
||||
"hotelName": "OUR Hotel",
|
||||
"description": "Wunderschönes Ambiente für Ihren Aufenthalt",
|
||||
"price": 135.12,
|
||||
"imageUrl": "assets/img/rat.png",
|
||||
"imageUrl": "assets/img/4.jpg",
|
||||
"rating": 2.5,
|
||||
"tags": ["Meer", "Berge"]
|
||||
}
|
||||
|
@ -10,7 +10,7 @@
|
||||
<link rel="icon" type="image/x-icon" href="favicon.ico">
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/material-design-icons/4.0.0/iconfont/material-icons.min.css" referrerpolicy="no-referrer" />
|
||||
</head>
|
||||
<body>
|
||||
<body class="bg-pink-600">
|
||||
<app-root></app-root>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -1 +1,4 @@
|
||||
/* You can add global styles to this file, and also import other style files */
|
||||
@tailwind base;
|
||||
@tailwind components;
|
||||
@tailwind utilities;
|
||||
|
10
tailwind.config.js
Normal file
10
tailwind.config.js
Normal file
@ -0,0 +1,10 @@
|
||||
/** @type {import('tailwindcss').Config} */
|
||||
module.exports = {
|
||||
content: [
|
||||
"./src/**/*.{html,ts}",
|
||||
],
|
||||
theme: {
|
||||
extend: {},
|
||||
},
|
||||
plugins: [],
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user