import Home from "../components/Home/Home"; import { fetchCourses, fetchSettings } from "../utils/index"; import ResponsiveNav from "../components/Navbar/ResponsiveNav"; import Head from "next/head"; async function getCourses() { const courses = await fetchCourses(); return courses; } async function getSettings() { const settings = await fetchSettings(); return settings; } export const metadata = { title: "All And One Music", description: "**", icons: { icon: '/favicon.ico', }, } export default async function HomePage() { const courses = await getCourses(); const settings = await getSettings(); return (
); }