690522:2125 ADR-028-228 #02
CI / CD Pipeline / build (push) Successful in 4m47s
CI / CD Pipeline / deploy (push) Failing after 5m39s

This commit is contained in:
2026-05-22 21:25:08 +07:00
parent 942cda486c
commit 433b149c85
16 changed files with 1067 additions and 1751 deletions
+1
View File
@@ -35,6 +35,7 @@
--chart-4: 174 60% 40%;
--chart-5: 30 85% 55%;
--radius: 0.5rem;
--font-sans: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}
.dark {
--background: 221 67% 10%;
+1 -4
View File
@@ -1,6 +1,5 @@
// File: app/layout.tsx
import type { Metadata } from 'next';
import { Inter } from 'next/font/google';
import './globals.css';
import { cn } from '@/lib/utils';
import QueryProvider from '@/providers/query-provider';
@@ -10,8 +9,6 @@ import { Toaster } from '@/components/ui/sonner';
import { headers } from 'next/headers';
import { AiStatusBannerHost } from '@/components/ai/ai-status-banner-host';
const inter = Inter({ subsets: ['latin'] });
export const metadata: Metadata = {
title: 'LCBP3-DMS',
description: 'Document Management System for Laem Chabang Port Phase 3',
@@ -27,7 +24,7 @@ export default async function RootLayout({ children }: RootLayoutProps) {
return (
<html lang="en" suppressHydrationWarning>
<head />
<body className={cn('min-h-screen bg-background font-sans antialiased', inter.className)}>
<body className={cn('min-h-screen bg-background font-sans antialiased')}>
<SessionProvider>
<ThemeProvider nonce={nonce}>
<QueryProvider>
+3
View File
@@ -14,6 +14,9 @@ const config = {
},
},
extend: {
fontFamily: {
sans: ['var(--font-sans)'],
},
colors: {
border: 'hsl(var(--border))',
input: 'hsl(var(--input))',