mirror of
https://github.com/AustinKelsay/plebdevs.git
synced 2025-05-16 03:05:51 +00:00
24 lines
695 B
JavaScript
24 lines
695 B
JavaScript
import Head from 'next/head'
|
|
import React from 'react';
|
|
import CoursesCarousel from '@/components/courses/CoursesCarousel'
|
|
import WorkshopsCarousel from '@/components/workshops/WorkshopsCarousel'
|
|
import HeroBanner from '@/components/banner/HeroBanner';
|
|
|
|
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 />
|
|
</main>
|
|
</>
|
|
)
|
|
}
|