mirror of
https://github.com/AustinKelsay/plebdevs.git
synced 2025-06-22 23:45:05 +00:00
28 lines
969 B
JavaScript
28 lines
969 B
JavaScript
import Head from 'next/head';
|
|
import React, { useEffect, useCallback } 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';
|
|
import { useLocalStorageWithEffect } from '@/hooks/useLocalStorage';
|
|
import axios from 'axios';
|
|
|
|
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>
|
|
</>
|
|
);
|
|
} |