Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 

21 righe
459 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 Gallery from '@/components/Gallery/Gallery';
  6. const Contact = () => {
  7. return (
  8. <>
  9. <Navbar />
  10. <PageBanner pageTitle="Gallery" />
  11. <Gallery />
  12. <Footer />
  13. </>
  14. )
  15. }
  16. export default Contact;