Skip to content
  • This project
    • Loading...
  • Sign in

sujata / advithconsulting.io-frontend

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Registry
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • advithconsulting.io-frontend
  • container
  • Contact
  • ContactPage.js
  • sneha-khedekar's avatar
    upload pages · 279657a2
    sneha-khedekar committed 2024-08-13 18:51:35 +0530
    279657a2 Browse Files
ContactPage.js 452 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
import PageBanner from "@/components/reuseables/PageBanner";
import React from "react";
import ContactInfo from "./ContactInfo";
import ContactForm from "./ContactForm";

const ContactPage = () => {
  return (
    <>
      <PageBanner
        pageTitle="Contact Us"
        homePageUrl="/"
        homePageText="Home"
        activePageText="CONTACT US"
      />
      <ContactInfo />
      <ContactForm />
    </>
  );
};

export default ContactPage;