You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

22 rivejä
485 B

  1. import React from 'react';
  2. import Navbar from "@/components/_App/NavbarHome";
  3. import Footer from "@/components/_App/Footer";
  4. import PageBanner from '@/components/Common/PageBanner';
  5. import SuperiorContent from '@/components/Accomodation/Superior';
  6. const BlogDetails = () => {
  7. return (
  8. <>
  9. <Navbar />
  10. <PageBanner pageTitle="Double Room" />
  11. <SuperiorContent />
  12. <Footer />
  13. </>
  14. )
  15. }
  16. export default BlogDetails;