forked from veda/www_veda_2025
add new content
This commit is contained in:
40
src/app/page.jsx
Normal file
40
src/app/page.jsx
Normal file
@@ -0,0 +1,40 @@
|
||||
import { CallToAction } from '@/components/CallToAction'
|
||||
import { CallToAction2 } from '@/components/CallToAction2'
|
||||
import { CallToAction3 } from '@/components/CallToAction3'
|
||||
import { Faqs } from '@/components/Faqs'
|
||||
import { Footer } from '@/components/Footer'
|
||||
import { Header } from '@/components/Header'
|
||||
import { Hero } from '@/components/Hero'
|
||||
import { Pricing } from '@/components/Pricing'
|
||||
import Route from '@/components/Route';
|
||||
import { SecondaryFeatures } from '@/components/SecondaryFeatures'
|
||||
import { Testimonials } from '@/components/Testimonials'
|
||||
import ThirdFeatures from '@/components/ThirdFeatures'
|
||||
import NewFeatures from '@/components/NewFeatures'
|
||||
import NewFeatures2 from '@/components/NewFeatures2'
|
||||
import Activities from '@/components/Activities'
|
||||
import Boats from '@/components/Boats'
|
||||
import Carousel from '@/components/Carousel'
|
||||
import CNNVIDEO from '@/components/CNNVIDEO'
|
||||
|
||||
export default function Home() {
|
||||
return (
|
||||
<>
|
||||
<Header />
|
||||
<main>
|
||||
<Hero />
|
||||
<CallToAction />
|
||||
<SecondaryFeatures />
|
||||
<NewFeatures />
|
||||
<NewFeatures2 />
|
||||
<CallToAction2 />
|
||||
<Carousel />
|
||||
<Route />
|
||||
<CNNVIDEO />
|
||||
<Testimonials />
|
||||
<CallToAction3 />
|
||||
</main>
|
||||
<Footer />
|
||||
</>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user