From 5412ca1a30c75c9b2486585d3447214be00e3db4 Mon Sep 17 00:00:00 2001 From: John Doe Date: Wed, 13 Sep 2023 17:12:25 +0300 Subject: [PATCH] Add more descriptive names to the components. For example, instead of SectionHeroArchivePage, you could call it ListingFlightsHeroSection. This will make your code more readable and understandable. --- .../listing-flights/page.tsx | 47 +++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 src/app/(flight-listings)/listing-flights/page.tsx 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;