feat: add dummy data and fill out component
This commit is contained in:
parent
8c7a270f30
commit
1c2f4e9b9a
@ -38,7 +38,7 @@ export function App() {
|
|||||||
<Popular />
|
<Popular />
|
||||||
{/* Bottom Section __________*/}
|
{/* Bottom Section __________*/}
|
||||||
|
|
||||||
<div id="bottom" className="flex-1 rounded-xl flex flex-row gap-4 ">
|
<div id="bottom" className="flex-1 rounded-xl flex flex-row gap-4 min-h-0">
|
||||||
<LocalRadio />
|
<LocalRadio />
|
||||||
<RecommendedRadio />
|
<RecommendedRadio />
|
||||||
</div>
|
</div>
|
||||||
|
@ -1,7 +1,90 @@
|
|||||||
export function LocalRadio() {
|
export function LocalRadio() {
|
||||||
return (
|
return (
|
||||||
<div id="bottom-l" className="font-bold p-2 bg-white flex-1 rounded-xl shadow-md">
|
<div id="bottom-l" className="flex flex-col min-h-0 overflow-y-hidden font-bold p-2 bg-white flex-1 rounded-xl shadow-md gap-2">
|
||||||
<h2>Local Radio</h2>
|
<h2 >Local Radio</h2>
|
||||||
|
|
||||||
|
<div className="flex flex-col gap-4 overflow-y-scroll h-full">
|
||||||
|
{dummyData.map(x => (
|
||||||
|
<div className="flex flex-row min-w-[100px] gap-2 items-center">
|
||||||
|
<img src={x.image} width={50} className="rounded-xl" />
|
||||||
|
<h3 className="text-xl text-gray-500">{x.title}</h3>
|
||||||
|
</div>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const dummyData = [
|
||||||
|
{
|
||||||
|
location: 'Florida, USA',
|
||||||
|
title: '93.3 FLZ',
|
||||||
|
image: 'https://thispersondoesnotexist.com'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
location: 'Florida, USA',
|
||||||
|
title: '93.3 FLZ',
|
||||||
|
image: 'https://thispersondoesnotexist.com'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
location: 'Florida, USA',
|
||||||
|
title: '93.3 FLZ',
|
||||||
|
image: 'https://thispersondoesnotexist.com'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
location: 'Florida, USA',
|
||||||
|
title: '93.3 FLZ',
|
||||||
|
image: 'https://thispersondoesnotexist.com'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
location: 'Florida, USA',
|
||||||
|
title: '93.3 FLZ',
|
||||||
|
image: 'https://thispersondoesnotexist.com'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
location: 'Florida, USA',
|
||||||
|
title: '93.3 FLZ',
|
||||||
|
image: 'https://thispersondoesnotexist.com'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
location: 'Florida, USA',
|
||||||
|
title: '93.3 FLZ',
|
||||||
|
image: 'https://thispersondoesnotexist.com'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
location: 'Florida, USA',
|
||||||
|
title: '93.3 FLZ',
|
||||||
|
image: 'https://thispersondoesnotexist.com'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
location: 'Florida, USA',
|
||||||
|
title: '93.3 FLZ',
|
||||||
|
image: 'https://thispersondoesnotexist.com'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
location: 'Florida, USA',
|
||||||
|
title: '93.3 FLZ',
|
||||||
|
image: 'https://thispersondoesnotexist.com'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
location: 'Florida, USA',
|
||||||
|
title: '93.3 FLZ',
|
||||||
|
image: 'https://thispersondoesnotexist.com'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
location: 'Florida, USA',
|
||||||
|
title: '93.3 FLZ',
|
||||||
|
image: 'https://thispersondoesnotexist.com'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
location: 'Florida, USA',
|
||||||
|
title: '93.3 FLZ',
|
||||||
|
image: 'https://thispersondoesnotexist.com'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
location: 'Florida, USA',
|
||||||
|
title: '93.3 FLZ',
|
||||||
|
image: 'https://thispersondoesnotexist.com'
|
||||||
|
}
|
||||||
|
]
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
export function MusicPlayer() {
|
export function MusicPlayer() {
|
||||||
return (
|
return (
|
||||||
<div className="flex justify-between p-2 bg-gray-300 flex-[0.5] rounded-xl max-h-[100px] gap-2 items-center">
|
<div className="flex justify-between p-2 bg-gray-300 flex-[0.5] rounded-xl max-h-[100px] gap-2 items-center pb-5">
|
||||||
<div className="flex gap-2 items-center flex-[0.5]">
|
<div className="flex gap-2 items-center flex-[0.5]">
|
||||||
<img
|
<img
|
||||||
width={50}
|
width={50}
|
||||||
|
@ -1,7 +1,65 @@
|
|||||||
export function RecommendedRadio() {
|
export function RecommendedRadio() {
|
||||||
return (
|
return (
|
||||||
<div id="bottom-r" className="font-bold p-2 bg-white flex-1 rounded-xl shadow-md">
|
<div id="bottom-r" className="flex-col flex font-bold p-2 bg-white flex-1 rounded-xl shadow-md gap-2">
|
||||||
<h2>Recommended For You</h2>
|
<h2>Recommended For You</h2>
|
||||||
|
|
||||||
|
<div className="flex flex-col gap-4 overflow-y-scroll h-full">
|
||||||
|
{dummyData.map(x => (
|
||||||
|
<div className="flex flex-row min-w-[100px] items-center gap-2">
|
||||||
|
<img src={x.image} width={50} className="rounded-xl" />
|
||||||
|
<h3 className="text-xl text-gray-500">{x.title}</h3>
|
||||||
|
</div>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const dummyData = [
|
||||||
|
{
|
||||||
|
location: 'Florida, USA',
|
||||||
|
title: '93.3 FLZ',
|
||||||
|
image: 'https://thispersondoesnotexist.com'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
location: 'Florida, USA',
|
||||||
|
title: '93.3 FLZ',
|
||||||
|
image: 'https://thispersondoesnotexist.com'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
location: 'Florida, USA',
|
||||||
|
title: '93.3 FLZ',
|
||||||
|
image: 'https://thispersondoesnotexist.com'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
location: 'Florida, USA',
|
||||||
|
title: '93.3 FLZ',
|
||||||
|
image: 'https://thispersondoesnotexist.com'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
location: 'Florida, USA',
|
||||||
|
title: '93.3 FLZ',
|
||||||
|
image: 'https://thispersondoesnotexist.com'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
location: 'Florida, USA',
|
||||||
|
title: '93.3 FLZ',
|
||||||
|
image: 'https://thispersondoesnotexist.com'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
location: 'Florida, USA',
|
||||||
|
title: '93.3 FLZ',
|
||||||
|
image: 'https://thispersondoesnotexist.com'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
location: 'Florida, USA',
|
||||||
|
title: '93.3 FLZ',
|
||||||
|
image: 'https://thispersondoesnotexist.com'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
location: 'Florida, USA',
|
||||||
|
title: '93.3 FLZ',
|
||||||
|
image: 'https://thispersondoesnotexist.com'
|
||||||
|
},
|
||||||
|
]
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user