6 Commits

Author SHA1 Message Date
93cee5d551 Update theme fonts 2026-05-02 07:42:58 +00:00
db680bb977 Update theme fonts 2026-05-02 07:42:58 +00:00
bca0b08941 Update theme fonts 2026-05-02 07:42:52 +00:00
53e59d4584 Update theme fonts 2026-05-02 07:42:52 +00:00
48b772093d Update src/app/dashboard/page.tsx 2026-05-02 07:41:35 +00:00
cd6c522ec0 Merge version_4 into main
Merge version_4 into main
2026-05-02 07:39:58 +00:00
3 changed files with 21 additions and 19 deletions

View File

@@ -27,21 +27,16 @@ export default function DashboardPage() {
]} ]}
brandName="MarbleCityFC" brandName="MarbleCityFC"
/> />
<div className="pt-24"> <div className="pt-24 min-h-screen flex items-center justify-center p-8">
<MetricCardSeven <div className="text-center space-y-4">
title="Performance Insights" <h1 className="text-4xl font-bold">Login Required</h1>
description="Detailed performance analysis for all club players." <p>Please authenticate your credentials to access the statistics dashboard.</p>
animationType="slide-up" <button className="px-6 py-3 bg-primary text-white rounded-md shadow hover:opacity-90">
textboxLayout="default" Authenticate Now
useInvertedBackground={false} </button>
metrics={[ </div>
{ id: "m1", value: "92%", title: "Passing Accuracy", items: ["High precision in midfield", "Improved transition play"] },
{ id: "m2", value: "14", title: "Key Assists", items: ["Leading in league", "Consistent wing delivery"] },
{ id: "m3", value: "8", title: "Clean Sheets", items: ["Strong defensive line", "Goalkeeper dominance"] }
]}
/>
</div> </div>
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }

View File

@@ -7,6 +7,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag"; import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script"; import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Montserrat } from "next/font/google"; import { Montserrat } from "next/font/google";
import { Open_Sans } from "next/font/google";
@@ -15,8 +16,14 @@ export const metadata: Metadata = {
description: 'Manage player stats, matches, and team rankings for MarbleCityFC.', description: 'Manage player stats, matches, and team rankings for MarbleCityFC.',
}; };
const montserrat = Montserrat({
variable: "--font-montserrat",
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const openSans = Open_Sans({
variable: "--font-open-sans",
subsets: ["latin"], subsets: ["latin"],
}); });
@@ -28,7 +35,7 @@ export default function RootLayout({
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en" suppressHydrationWarning>
<ServiceWrapper> <ServiceWrapper>
<body className={`${montserrat.variable} antialiased`}> <body className={`${inter.variable} ${openSans.variable} antialiased`}>
<Tag /> <Tag />
{children} {children}
<script <script

View File

@@ -11,7 +11,7 @@ html {
body { body {
background-color: var(--background); background-color: var(--background);
color: var(--foreground); color: var(--foreground);
font-family: var(--font-montserrat), sans-serif; font-family: var(--font-open-sans), sans-serif;
position: relative; position: relative;
min-height: 100vh; min-height: 100vh;
overscroll-behavior: none; overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4, h4,
h5, h5,
h6 { h6 {
font-family: var(--font-montserrat), sans-serif; font-family: var(--font-inter), sans-serif;
} }