plebdevs/src/pages/index.js

26 lines
825 B
JavaScript
Raw Normal View History

2023-12-23 14:54:38 -06:00
import Head from 'next/head'
import React from 'react';
2024-03-26 18:14:32 -05:00
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';
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>
2024-03-17 19:43:19 -05:00
<HeroBanner />
<CoursesCarousel />
2024-03-13 17:45:55 -05:00
<WorkshopsCarousel />
<ResourcesCarousel />
2023-12-23 14:54:38 -06:00
</main>
</>
)
}