mirror of
https://github.com/i701/sarlink-portal.git
synced 2025-02-22 17:42:00 +00:00
- Updated createPayment function to log payment data more clearly. - Introduced verifyPayment function for validating payments via an external API. - Enhanced DevicesToPay component to include user information and payment verification functionality. - Added formatDate utility for consistent date formatting across the application. - Updated Prisma schema to include account number for users. - Refactored layout and device cart components for improved user experience and responsiveness.
45 lines
1.2 KiB
TypeScript
45 lines
1.2 KiB
TypeScript
import { ThemeProvider } from "@/components/theme-provider";
|
|
import { Provider } from "jotai";
|
|
|
|
import type { Metadata } from "next";
|
|
import { Barlow } from "next/font/google";
|
|
import NextTopLoader from "nextjs-toploader";
|
|
import { Toaster } from "sonner";
|
|
import "./globals.css";
|
|
import QueryProvider from "@/components/query-provider";
|
|
const barlow = Barlow({
|
|
subsets: ["latin"],
|
|
weight: ["100", "300", "400", "500", "600", "700", "800", "900"],
|
|
variable: "--font-barlow",
|
|
});
|
|
|
|
export const metadata: Metadata = {
|
|
title: "SAR Link Portal",
|
|
description: "Sarlink Portal",
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en" suppressHydrationWarning>
|
|
<body className={`${barlow.variable} antialiased font-sans`}>
|
|
<Provider>
|
|
<NextTopLoader color="#f49d1b" showSpinner={false} zIndex={9999} />
|
|
<Toaster richColors />
|
|
<ThemeProvider
|
|
attribute="class"
|
|
defaultTheme="system"
|
|
enableSystem
|
|
disableTransitionOnChange
|
|
>
|
|
<QueryProvider>{children}</QueryProvider>
|
|
</ThemeProvider>
|
|
</Provider>
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|