|
|
@ -0,0 +1,14 @@ |
|
|
|
import React, { FC } from "react"; |
|
|
|
import SectionGridFilterCard from "../SectionGridFilterCard"; |
|
|
|
|
|
|
|
export interface ListingExperiencesPageProps {} |
|
|
|
|
|
|
|
const ListingExperiencesPage: FC<ListingExperiencesPageProps> = ({}) => { |
|
|
|
return ( |
|
|
|
<div className="container relative"> |
|
|
|
<SectionGridFilterCard className="pb-24 lg:pb-28" /> |
|
|
|
</div> |
|
|
|
); |
|
|
|
}; |
|
|
|
|
|
|
|
export default ListingExperiencesPage; |