25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- import React from 'react';
- import Navbar from "@/components/_App/Navbar";
- import MainBanner from "@/components/ITStartupTwo/MainBanner";
- import Features from "@/components/ITStartupTwo/Features";
- import ServicesArea from "@/components/ITStartupTwo/ServicesArea";
- import OurServices from "@/components/ITStartupTwo/OurServices";
- import Team from "@/components/Common/Team";
- import FunFactsArea from "@/components/Common/FunFactsArea";
- import PricingStyleOne from "@/components/PricingPlans/PricingStyleOne";
- import Feedback from "@/components/Common/Feedback";
- import Partner from "@/components/Common/Partner";
- import BlogPost from "@/components/Common/BlogPost";
- import Footer from "@/components/_App/Footer";
-
- const ITStartup2 = () => {
- return (
- <>
- <Navbar />
- <MainBanner />
- <Features />
- <ServicesArea />
- <OurServices />
- <Team />
- <FunFactsArea />
- <PricingStyleOne />
- <Feedback />
- <Partner />
- <BlogPost />
- <Footer />
- </>
- )
- }
-
- export default ITStartup2;
|