mirror of
https://github.com/AustinKelsay/plebdevs.git
synced 2025-06-06 18:31:00 +00:00
26 lines
874 B
JavaScript
26 lines
874 B
JavaScript
import Head from 'next/head';
|
|
import React from 'react';
|
|
import CoursesCarousel from '@/components/content/carousels/CoursesCarousel';
|
|
import VideosCarousel from '@/components/content/carousels/VideosCarousel';
|
|
import DocumentsCarousel from '@/components/content/carousels/DocumentsCarousel';
|
|
import HeroBanner from '@/components/banner/HeroBanner';
|
|
|
|
// todo: make paid course video and document lessons not appear in carousels
|
|
export default function Home() {
|
|
return (
|
|
<>
|
|
<Head>
|
|
<title>PlebDevs</title>
|
|
<meta name="description" content="Learn to code" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<link rel="icon" href="/favicon.ico" />
|
|
</Head>
|
|
<main>
|
|
<HeroBanner />
|
|
<CoursesCarousel />
|
|
<VideosCarousel />
|
|
<DocumentsCarousel />
|
|
</main>
|
|
</>
|
|
);
|
|
} |