diff --git a/src/app/(flight-listings)/listing-flights/page.tsx b/src/app/(flight-listings)/listing-flights/page.tsx new file mode 100644 index 0000000..19ad9a9 --- /dev/null +++ b/src/app/(flight-listings)/listing-flights/page.tsx @@ -0,0 +1,47 @@ +import SectionHeroArchivePage from "@/app/(server-components)/SectionHeroArchivePage"; +import BgGlassmorphism from "@/components/BgGlassmorphism"; +import SectionSliderNewCategories from "@/components/SectionSliderNewCategories"; +import SectionSubscribe2 from "@/components/SectionSubscribe2"; +import React, { FC } from "react"; +import SectionGridFilterCard from "../SectionGridFilterCard"; + +export interface ListingFlightsPageProps {} + +const ListingFlightsPage: FC = ({}) => { + return ( +
+ + +
+ {/* SECTION HERO */} + + + 1599 flights + + } + className="pt-10 pb-24 lg:pb-28 lg:pt-16 " + /> + + {/* SECTION */} + + + {/* SECTION 1 */} + + + {/* SECTION */} + +
+
+ ); +}; + +export default ListingFlightsPage;