main: add many things to app :)

Signed-off-by: nfel <nfilsaraee@gmail.com>
This commit is contained in:
2025-12-30 01:30:31 +03:30
parent 91c149e92e
commit 895afc44af
26 changed files with 2180 additions and 249 deletions
+9 -6
View File
@@ -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>