mirror of
https://github.com/AustinKelsay/plebdevs.git
synced 2025-06-06 01:02:04 +00:00
26 lines
837 B
JavaScript
26 lines
837 B
JavaScript
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';
|
|
|
|
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 />
|
|
<CoursesCarousel />
|
|
{/* <WorkshopsCarousel />
|
|
<ResourcesCarousel /> */}
|
|
</main>
|
|
</>
|
|
);
|
|
} |