Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
|
- import React from 'react';
- import NavbarStyleTwo from "@/components/_App/NavbarStyleTwo";
- import MainBanner from "@/components/Hosting/MainBanner";
- import TopFeatures from '@/components/Hosting/TopFeatures';
- import DomainSearch from '@/components/Hosting/DomainSearch';
- import WhyChoose from '@/components/Hosting/WhyChoose';
- import PricingStyleTwo from '@/components/PricingPlans/PricingStyleTwo';
- import FeedbackStyleTwo from '@/components/Common/FeedbackStyleTwo';
- import Partner from "@/components/Common/Partner";
- import Features from '@/components/Hosting/Features';
- import BlogPost from "@/components/Common/BlogPost";
- import CTA from '@/components/Common/CTA';
- import Footer from "@/components/_App/Footer";
-
- const Hosting = () => {
- return (
- <>
- <NavbarStyleTwo />
- <MainBanner />
- <TopFeatures />
- <DomainSearch />
- <WhyChoose />
- <PricingStyleTwo />
- <FeedbackStyleTwo />
- <div className="pb-80">
- <Partner />
- </div>
- <Features />
- <BlogPost />
- <CTA />
- <Footer />
- </>
- )
- }
-
- export default Hosting;
|