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';
|
|
|
|
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-09-13 11:39:44 -05:00
|
|
|
import { InteractivePromotionalCarousel } from '@/components/interactive-news-carousel';
|
2023-12-23 14:54:38 -06:00
|
|
|
|
2024-09-13 11:39:44 -05:00
|
|
|
// todo append link to plebdevs item in each published course or resource description
|
|
|
|
// todo perhaps need to update slug on details on course pages to be d tag instead of db id
|
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
|
|
|
{/* <HeroBanner /> */}
|
|
|
|
<InteractivePromotionalCarousel />
|
2024-08-03 22:33:54 -05:00
|
|
|
<CoursesCarousel />
|
2024-08-04 18:00:59 -05:00
|
|
|
<WorkshopsCarousel />
|
|
|
|
<ResourcesCarousel />
|
2023-12-23 14:54:38 -06:00
|
|
|
</main>
|
|
|
|
</>
|
2024-07-20 10:51:16 -05:00
|
|
|
);
|
|
|
|
}
|