22 lines
643 B
TypeScript
22 lines
643 B
TypeScript
import Header from "@/components/shared/layout/header/Header";
|
|
import ContactSection from "@/components/pages/contact/ContactSection";
|
|
import Footer from "@/components/shared/layout/footer/Footer";
|
|
import ContactScrollProgressButton from "@/components/pages/contact/ContactScrollProgressButton";
|
|
import ContactInitAnimations from "@/components/pages/contact/ContactInitAnimations";
|
|
|
|
const page = () => {
|
|
return (
|
|
<div className="tp-app">
|
|
<Header />
|
|
<main>
|
|
<ContactSection />
|
|
</main>
|
|
<Footer />
|
|
<ContactScrollProgressButton />
|
|
<ContactInitAnimations />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default page;
|