From 244e83d713dda77d67ec1e82c8842708fe141088 Mon Sep 17 00:00:00 2001 From: mahfuzhannan Date: Fri, 24 Apr 2026 22:32:57 +0100 Subject: [PATCH 1/4] feat: add 4k support for screen --- app/layout.tsx | 2 +- app/page.tsx | 18 +- components/Clock/Clock.tsx | 4 +- components/Date/Date.tsx | 8 +- components/MosqueMetadata/MosqueMetadata.tsx | 16 +- components/Notice/Notice.tsx | 8 +- components/PrayerTimes/PrayerTimes.tsx | 27 +- .../SunriseJummahTiles/SunriseJummahTiles.tsx | 24 +- .../UpcomingPrayerDayTiles.tsx | 70 +- components/ui/mosque-screen/InfoTile.tsx | 36 + package-lock.json | 714 +++++++++--------- package.json | 10 +- tailwind.config.ts | 138 ++-- 13 files changed, 567 insertions(+), 508 deletions(-) create mode 100644 components/ui/mosque-screen/InfoTile.tsx diff --git a/app/layout.tsx b/app/layout.tsx index e752d7d..aa42533 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -32,7 +32,7 @@ export default function RootLayout({ /> - + {children} diff --git a/app/page.tsx b/app/page.tsx index 7b2c7cb..3ec2c52 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -62,20 +62,20 @@ export default async function Home() { return ( -
-
-
-
-
+
+
+
+
+
-
+
-
+
-
+
@@ -83,7 +83,7 @@ export default async function Home() {
-
+
diff --git a/components/Clock/Clock.tsx b/components/Clock/Clock.tsx index 7a3631e..6632f7a 100644 --- a/components/Clock/Clock.tsx +++ b/components/Clock/Clock.tsx @@ -24,10 +24,10 @@ export default function Clock({ darkMode = false }: { darkMode?: boolean }) {