plebdevs/src/pages/index.js

29 lines
1.1 KiB
JavaScript
Raw Normal View History

import Head from 'next/head';
import React from 'react';
import CoursesCarousel from '@/components/content/carousels/CoursesCarousel';
import WorkshopsCarousel from '@/components/content/carousels/WorkshopsCarousel';
import HeroBanner from '@/components/banner/HeroBanner';
import ResourcesCarousel from '@/components/content/carousels/ResourcesCarousel';
import { InteractivePromotionalCarousel } from '@/components/interactive-news-carousel';
2023-12-23 14:54:38 -06: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>
<main>
{/* <HeroBanner /> */}
<InteractivePromotionalCarousel />
<CoursesCarousel />
<WorkshopsCarousel />
<ResourcesCarousel />
2023-12-23 14:54:38 -06:00
</main>
</>
);
}