2024-07-20 10:51:16 -05:00
|
|
|
import Head from 'next/head';
|
2024-07-21 19:56:55 -05:00
|
|
|
import React, { useEffect, useCallback } from 'react';
|
2024-07-20 10:51:16 -05:00
|
|
|
import CoursesCarousel from '@/components/content/carousels/CoursesCarousel';
|
|
|
|
import WorkshopsCarousel from '@/components/content/carousels/WorkshopsCarousel';
|
2024-03-17 17:32:23 -05:00
|
|
|
import HeroBanner from '@/components/banner/HeroBanner';
|
2024-03-27 14:44:54 -05:00
|
|
|
import ResourcesCarousel from '@/components/content/carousels/ResourcesCarousel';
|
2024-07-20 10:51:16 -05:00
|
|
|
import { useLocalStorageWithEffect } from '@/hooks/useLocalStorage';
|
|
|
|
import axios from 'axios';
|
2023-12-23 14:54:38 -06:00
|
|
|
|
|
|
|
export default function Home() {
|
2024-07-20 10:51:16 -05:00
|
|
|
|
2023-12-23 14:54:38 -06:00
|
|
|
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-03-17 19:43:19 -05:00
|
|
|
<HeroBanner />
|
2024-08-03 22:33:54 -05:00
|
|
|
<CoursesCarousel />
|
2024-03-13 17:45:55 -05:00
|
|
|
<WorkshopsCarousel />
|
2024-08-03 22:33:54 -05:00
|
|
|
<ResourcesCarousel />
|
2023-12-23 14:54:38 -06:00
|
|
|
</main>
|
|
|
|
</>
|
2024-07-20 10:51:16 -05:00
|
|
|
);
|
|
|
|
}
|