main: add many things to app :)
Signed-off-by: nfel <nfilsaraee@gmail.com>
This commit is contained in:
+9
-6
@@ -1,16 +1,19 @@
|
||||
import type { Metadata } from 'next';
|
||||
import { Inter } from 'next/font/google';
|
||||
import { Vazirmatn } from 'next/font/google';
|
||||
import './globals.css';
|
||||
import { CartProvider } from '@/lib/CartContext';
|
||||
import { AdminProvider } from '@/lib/AdminContext';
|
||||
import { AlbumsProvider } from '@/lib/AlbumsContext';
|
||||
|
||||
const inter = Inter({ subsets: ['latin'] });
|
||||
const vazirmatn = Vazirmatn({
|
||||
subsets: ['latin', 'arabic'],
|
||||
display: 'swap',
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Parsa - Progressive Rock Composer',
|
||||
description: 'Explore progressive rock albums by composer and producer Parsa. Intricate compositions, powerful instrumentation, and sonic landscapes.',
|
||||
keywords: ['progressive rock', 'prog rock', 'music', 'composer', 'producer', 'albums'],
|
||||
title: 'Podzahr - Parsa Sadatie Music',
|
||||
description: 'Explore progressive rock albums by composer and producer Parsa Sadatie (@parsadat). Intricate compositions, powerful instrumentation, and sonic landscapes.',
|
||||
keywords: ['podzahr', 'parsa sadatie', 'progressive rock', 'prog rock', 'music', 'composer', 'producer', 'albums'],
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
@@ -20,7 +23,7 @@ export default function RootLayout({
|
||||
}>) {
|
||||
return (
|
||||
<html lang="en">
|
||||
<body className={inter.className}>
|
||||
<body className={vazirmatn.className}>
|
||||
<AdminProvider>
|
||||
<AlbumsProvider>
|
||||
<CartProvider>{children}</CartProvider>
|
||||
|
||||
Reference in New Issue
Block a user