2024-07-20 10:51:16 -05:00
|
|
|
import Head from 'next/head';
|
2024-08-04 17:02:34 -05:00
|
|
|
import React from 'react';
|
2024-07-20 10:51:16 -05:00
|
|
|
import CoursesCarousel from '@/components/content/carousels/CoursesCarousel';
|
2024-09-15 13:27:37 -05:00
|
|
|
import VideosCarousel from '@/components/content/carousels/VideosCarousel';
|
2024-09-15 15:15:58 -05:00
|
|
|
import DocumentsCarousel from '@/components/content/carousels/DocumentsCarousel';
|
2024-09-14 18:05:59 -05:00
|
|
|
import InteractivePromotionalCarousel from '@/components/content/carousels/InteractivePromotionalCarousel';
|
2023-12-23 14:54:38 -06:00
|
|
|
|
|
|
|
export default function Home() {
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<Head>
|
|
|
|
<title>Create Next App</title>
|
|
|
|
<meta name="description" content="Generated by create next app" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
|
|
<link rel="icon" href="/favicon.ico" />
|
|
|
|
</Head>
|
2023-12-23 20:33:25 -06:00
|
|
|
<main>
|
2024-09-13 11:39:44 -05:00
|
|
|
<InteractivePromotionalCarousel />
|
2024-08-03 22:33:54 -05:00
|
|
|
<CoursesCarousel />
|
2024-09-15 13:27:37 -05:00
|
|
|
<VideosCarousel />
|
2024-09-15 15:15:58 -05:00
|
|
|
<DocumentsCarousel />
|
2023-12-23 14:54:38 -06:00
|
|
|
</main>
|
|
|
|
</>
|
2024-07-20 10:51:16 -05:00
|
|
|
);
|
|
|
|
}
|