2024-10-06 11:52:45 +08:00
|
|
|
import React from 'react'
|
|
|
|
import ResponsiveNav from "@/components/Navbar/ResponsiveNav";
|
|
|
|
import { fetchCourses, fetchSettings, fetchAboutus } from "@/utils";
|
2024-10-08 14:46:18 +08:00
|
|
|
import {AboutusProps } from "@/types";
|
2024-10-06 11:52:45 +08:00
|
|
|
import Home from '@/components/Aboutus/Home';
|
|
|
|
async function getCourses() {
|
|
|
|
const courses = await fetchCourses();
|
|
|
|
return courses;
|
|
|
|
}
|
|
|
|
|
|
|
|
async function getAboutus() {
|
|
|
|
const aboutus: AboutusProps[] = await fetchAboutus();
|
|
|
|
return aboutus;
|
|
|
|
}
|
|
|
|
|
|
|
|
async function getSettings() {
|
|
|
|
const settings = await fetchSettings();
|
|
|
|
return settings;
|
|
|
|
}
|
|
|
|
|
|
|
|
export const metadata = {
|
|
|
|
title: "All In One",
|
|
|
|
description: "**",
|
|
|
|
}
|
|
|
|
|
2024-10-08 15:11:16 +08:00
|
|
|
export default async function Page() {
|
2024-10-06 11:52:45 +08:00
|
|
|
const courses = await getCourses();
|
|
|
|
const settings = await getSettings();
|
|
|
|
const aboutus = await getAboutus();
|
|
|
|
//const course = await getCourse(params.slug);
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div className='bg-[#F6E8E9]'>
|
|
|
|
<ResponsiveNav courses={courses} settings={settings} />
|
2024-10-08 15:11:16 +08:00
|
|
|
<Home settings={settings} aboutus={aboutus} />
|
2024-10-06 11:52:45 +08:00
|
|
|
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|