Skip to content

Commit 32fcc4e

Browse files
committedMar 12, 2024
completed episode 10
1 parent eed9d02 commit 32fcc4e

File tree

9 files changed

+32
-127
lines changed

9 files changed

+32
-127
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"plugins": {
3+
"tailwindcss": {}
4+
}
5+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
@tailwind base;
2+
@tailwind components;
3+
@tailwind utilities;

‎Episode10-Jo dikhta hai Vo bikta hai/Coding/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<head>
44
<meta charset="UTF-8">
55
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6-
<link rel="stylesheet" href="style.css">
6+
<link rel="stylesheet" href="index.css">
77
<title>Episode-10</title>
88
</head>
99
<body>

‎Episode10-Jo dikhta hai Vo bikta hai/Coding/src/components/Body.js

+7-7
Original file line numberDiff line numberDiff line change
@@ -38,17 +38,17 @@ const Body = () => {
3838
<Shimmer />
3939
) : (
4040
<div className="body">
41-
<div className="filter">
42-
<div className="search">
41+
<div className="filter flex justify-between items-center py-6 px-8">
42+
<div className="search flex gap-4">
4343
<input
4444
type="text"
45-
className="search-box"
45+
className="search-box ring-2 outline-none rounded-md px-1"
4646
value={searchText}
4747
onChange={(e) => {
4848
setSearchText(e.target.value);
4949
}}
5050
/>
51-
<button
51+
<button className="text-lg font-medium bg-neutral-800 text-white rounded-md px-6 py-1 cursor-pointer"
5252
onClick={() => {
5353
//onClick filter the restaurant cards based on the search condition and update the UI
5454
const filterRes = listOfRestaurents.filter((restrau) =>
@@ -63,7 +63,7 @@ const Body = () => {
6363
</button>
6464
</div>
6565
<button
66-
className="filter-btn"
66+
className="filter-btn bg-neutral-700 text-white rounded-md h-10 px-4 cursor-pointer"
6767
onClick={() => {
6868
const filter = listOfRestaurents.filter(
6969
(val) => val.info.avgRating > 4
@@ -72,10 +72,10 @@ const Body = () => {
7272
setListOfRestaurents(filter);
7373
}}
7474
>
75-
Click Here to Filter Restraurents
75+
Top Rated Restraurents
7676
</button>
7777
</div>
78-
<div className="res-container">
78+
<div className="res-container grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 xl:grid-cols-4 gap-10 px-8 py-14">
7979
{filteredList?.map((restaurant) => (
8080
<Link key={restaurant.info.id} to={"/restaurants/" + restaurant.info.id}>
8181
<RestaurantCard resData={restaurant} />

‎Episode10-Jo dikhta hai Vo bikta hai/Coding/src/components/Header.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ const Header = () => {
1010

1111
useEffect(() => {}, []);
1212
return (
13-
<div className="header">
13+
<div className="header flex justify-between">
1414
<div className="logo-container">
15-
<img src={LOGO_URL} alt="" className="logo" />
15+
<img src={LOGO_URL} alt="" className="logo w-16" />
1616
</div>
1717
<div className="nav-links">
18-
<ul className="links">
18+
<ul className="links flex gap-4 leading-[3rem] md:leading-[3rem] font-medium md:gap-8 text-xs md:text-base">
1919
<li>Online Status: {isOnline ? "🟢" : "🔴"}</li>
2020
<li>
2121
<Link to="/">Home</Link>

‎Episode10-Jo dikhta hai Vo bikta hai/Coding/src/components/RestaurantCard.js

+6-7
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,15 @@ import { CDN_URL } from "../utils/constants";
44
const RestaurantCard = (props) => {
55
// const {resName, cuisine} = props;
66
const { resData } = props;
7-
const { name, cuisines, avgRating, slaString, cloudinaryImageId } =
7+
const { name, cuisines, avgRating, cloudinaryImageId } =
88
resData?.info;
99
return (
10-
<div className="res-card" style={{ backgroundColor: "#f0f0f0" }}>
11-
<img src={CDN_URL + cloudinaryImageId} alt="res-logo" />
12-
<h3>{name}</h3>
10+
<div className="res-card px-2 bg-neutral-300 p-2 shadow-md shadow-neutral-400 h-full">
11+
<img src={CDN_URL + cloudinaryImageId} alt="res-logo" className="bg-neutral-200 p-3 rounded-md hover:scale-95 transition-all hover:duration-300 shadow-md hover:shadow-neutral-600" />
12+
<h3 className="text-2xl font-bold">{name}</h3>
1313
{/* if you have an array in your JSON data just join them with gap and commas with (.join()) */}
14-
<h4>{cuisines.join(" , ")}</h4>
15-
<h4>{avgRating}</h4>
16-
<h4>{slaString}</h4>
14+
<h4 className="font-medium">{cuisines.join(" , ")}</h4>
15+
<h4 className="font-bold text-lg">{avgRating}</h4>
1716
</div>
1817
);
1918
};

‎Episode10-Jo dikhta hai Vo bikta hai/Coding/style.css

-108
This file was deleted.

‎Episode10-Jo dikhta hai Vo bikta hai/Coding/tailwind.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/** @type {import('tailwindcss').Config} */
22
module.exports = {
3-
content: [],
3+
content: ["./src/**/*.{html,js,ts,jsx,tsx}",],
44
theme: {
55
extend: {},
66
},
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Chapter 10 Covers:
2+
3+
### A) Explore all the ways of writing css.
4+
### B) How do we configure tailwind?
5+
### C) Why do we have .postcssrc file?
6+
### D) In tailwind.config.js, what does all the keys mean (content, theme, extend, plugins)?

0 commit comments

Comments
 (0)
Please sign in to comment.