feat(SW-914): remove placholder values
This commit is contained in:
@@ -8,7 +8,6 @@ import type { AmenityProps } from "@/types/components/hotelPage/sidepeek/amenity
|
|||||||
export default function Amenity({ name, buttonUrl }: AmenityProps) {
|
export default function Amenity({ name, buttonUrl }: AmenityProps) {
|
||||||
return (
|
return (
|
||||||
<div className={styles.wrapper}>
|
<div className={styles.wrapper}>
|
||||||
<div>{name}</div>
|
|
||||||
{buttonUrl && (
|
{buttonUrl && (
|
||||||
<Button theme="base" intent="primary" fullWidth asChild>
|
<Button theme="base" intent="primary" fullWidth asChild>
|
||||||
<Link href={buttonUrl} color="white">
|
<Link href={buttonUrl} color="white">
|
||||||
|
|||||||
@@ -31,7 +31,7 @@ export default async function AmenitiesSidepeek({
|
|||||||
title={amenity.name}
|
title={amenity.name}
|
||||||
icon={IconName[name]}
|
icon={IconName[name]}
|
||||||
>
|
>
|
||||||
<Amenity name={amenity.name} buttonUrl="#" />
|
<Amenity name={amenity.name} />
|
||||||
</AccordionItem>
|
</AccordionItem>
|
||||||
)
|
)
|
||||||
})}
|
})}
|
||||||
|
|||||||
Reference in New Issue
Block a user