plebdevs/src/pages/index.js

26 lines
874 B
JavaScript
Raw Normal View History

import Head from 'next/head';
import React from 'react';
import CoursesCarousel from '@/components/content/carousels/CoursesCarousel';
2024-09-15 13:27:37 -05:00
import VideosCarousel from '@/components/content/carousels/VideosCarousel';
import DocumentsCarousel from '@/components/content/carousels/DocumentsCarousel';
2024-10-10 17:03:42 -05:00
import HeroBanner from '@/components/banner/HeroBanner';
2023-12-23 14:54:38 -06:00
// todo: make paid course video and document lessons not appear in carousels
2023-12-23 14:54:38 -06:00
export default function Home() {
return (
<>
<Head>
2024-10-29 13:33:37 -05:00
<title>PlebDevs</title>
<meta name="description" content="Learn to code" />
2023-12-23 14:54:38 -06:00
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" href="/favicon.ico" />
</Head>
<main>
2024-10-10 17:03:42 -05:00
<HeroBanner />
<CoursesCarousel />
2024-09-15 13:27:37 -05:00
<VideosCarousel />
<DocumentsCarousel />
2023-12-23 14:54:38 -06:00
</main>
</>
);
}